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