カテゴリー:
Git BASH
閲覧数:213 配信日:2022-10-20 00:51
6.ローカルリポジトリに、リモートリポジトリを設定する
※リモートリポジトリは、GitHub の GUI 経由で事前作成しておく必要がある。今回事前に作成したリモートリポジトリ名は「P48-First-Ranking-Service」。
$ git remote add origin git@github.com:GitHubユーザー名/P48-First-Ranking-Service.git
ローカルリポジトリに設定されている、リモートリポジトリ内容を一覧表示(URLも表示)
$ git remote -v
origin git@github.com:GitHubユーザー名/P48-First-Ranking-Service.git (fetch)
origin git@github.com:GitHubユーザー名/P48-First-Ranking-Service.git (push)
ローカルリポジトリ(mainブランチ)(の変更)を送信して、リモートリポジトリ(「origin」上の同名ブランチ)へ反映させる
$ git push origin main
To github.com:GitHubユーザー名/P48-First-Ranking-Service.git
! [rejected] main -> main (fetch first)
error: failed to push some refs to 'github.com:GitHubユーザー名/P48-First-Ranking-Service.
git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.