0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ローカル→リモートリポジトリを紐づける際の躓き

Last updated at Posted at 2022-09-23

躓き記念の自分メモです

したい

ローカルフォルダをGitリモートリポジトリと紐づけたい

手順

  1. リモートリポジトリを作る
    • リモートリポジトリのURLをコピー
  2. ここからターミナル操作
    • $ cd 紐づけたいローカルフォルダ
  3. $ git init
    • git初期化
  4. $ git remote add origin (リモートリポジトリURL)
    • ローカルとリモートが紐付く
  5. $ git add .
    • ステージング
  6. $ git commit -m "commitメッセージ"
    • ローカルリポジトリにcommit
  7. $ git push origin HEAD
    • 初push
  8. $ git rebase origin/main
    • 「origin/main」と「ローカルmain」を一致させる
      • 紐づけた直後はズレている。原因不明...
  9. 作業開始

躓きポイント

8部分「origin/main」と「ローカルmain」のズレに対処できず
pushに対して延々このエラーに跳ね返される
$ git rebase origin/mainであっさり解決
間違っても上書きするものもないしへーき、へーき...(たぶん)

 ! [rejected]        HEAD -> main (non-fast-forward)
error: failed to push some refs to '(リモートリポジトリURL)'
hint: Updates were rejected because the tip of your current branch is behind     
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.  
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?