Gitでリモートリポジトリからプルするときに次のような警告が出る場合の対処方法を紹介します。
警告メッセージの内容
warning: Pulling without specifying how to reconcile divergent branches is
discouraged. You can squelch this message by running one of the following
commands sometime before your next pull:
git config pull.rebase false # merge (the default strategy)
git config pull.rebase true # rebase
git config pull.ff only # fast-forward only
You can replace "git config" with "git config --global" to set a default
preference for all repositories. You can also pass --rebase, --no-rebase,
or --ff-only on the command line to override the configured default per
invocation.
このエラーメッセージを日本語にすると次のようになります。
警告メッセージの内容(日本語)
警告: 分岐したブランチを調整する方法を指定せずにpullすることは推奨されていません。次のコマンドを次のpullの前に実行することで、このメッセージを抑制できます。
git config pull.rebase false # マージ(デフォルトの戦略)
git config pull.rebase true # リベース
git config pull.ff only # ファストフォワードのみ
すべてのリポジトリにデフォルトの設定をするには、"git config"を"git config --global"に置き換えることができます。また、コマンドラインで--rebase、--no-rebase、または--ff-onlyを渡すことで、設定されたデフォルトを上書きすることもできます。
原因
この警告は、Gitのバージョン2.27から導入されたもので、リモートリポジトリからプルするときにどのように分岐したブランチを調整するかを指定しないと警告が出るようになりました。
解決策
この警告を抑制するには、次のいずれかの戦略を選び、git config
コマンドで設定します。
- デフォルト
- リベース
- ファストフォワードのみ
デフォルト
次のコマンドを実行するとデフォルトの挙動になります。
コマンド
git config pull.rebase false
git pull
に--rebase option
を付けずに実行するのと同じです。rebase
せずにfast-forward
可能な場合は fast-forward
を行いそうでない場合は、merge commit
を生成しようとします。
リベース
次のコマンドを実行するとrebase
をデフォルトの挙動になります。
コマンド
git config pull.rebase true
git pull
に--rebase option
を付けて実行するのと同じです。rebase
せずにfast-forward
可能な場合は fast-forward
を行いそうでない場合は、rebase
を行います。
ファストフォワードのみ
次のコマンドを実行するとfast-forward
のみをデフォルトの挙動になります。
コマンド
git config pull.ff only
git pull
に--ff-only option
を付けて実行するのと同じです。rebase
せずにfast-forward
可能な場合は fast-forward
を行いそうでない場合は、fast-forward
を行わずにエラーになります。
まとめ
Gitのバージョン2.27から導入された警告を抑制する方法を紹介しました。