14
9

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.

git pull したときに出たエラーの対処法

Posted at

git pull のエラー

hint: You have divergent branches and need to specify how to reconcile them.
hint: You can do so by running one of the following commands sometime before
hint: your next pull:
hint: 
hint:   git config pull.rebase false  # merge
hint:   git config pull.rebase true   # rebase
hint:   git config pull.ff only       # fast-forward only
hint: 
hint: You can replace "git config" with "git config --global" to set a default
hint: preference for all repositories. You can also pass --rebase, --no-rebase,
hint: or --ff-only on the command line to override the configured default per
hint: invocation.
fatal: Need to specify how to reconcile divergent branches.

このエラーが出たときに行った対処法

pull --rebase や pull --ff-only のふるまいを期待しているにも関わらずそれらの指定をしないまま pull してしまったユーザが、意図しないマージコミットを作ってしまうケースを避けるための警告らしい

エラーの解読に参考にしたサイト
https://blog.agile.esm.co.jp/entry/git-warns-pulling-without-specifying-how-to-reconcile-divergent-branches

そこで行った対処法

git reset --hard origin/「ブランチ名」

を実行してリモートのブランチに強制的に同期させる
これで対処した

git reset 

このresetコマンドのオプションがあり、

git reset --soft
git reset --mixed
git reset --hard

softは現在のbranchの先頭 だけをリセット

mixedは現在のbranchの先頭と、インデックスをリセット

hard は現在のbranchの先頭、インデックスと作業ツリーを全部リセットするコマンド

resetの解読に参考にしたサイト
https://www-creators.com/archives/1097

14
9
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
14
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?