git pull エラー “Pulling without specifying how to reconcile divergent branches is discouraged.”

$ git pull
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.

上記エラーの対処方法になります。このエラーは2020年6月に更新されたgitのバージョンから出てくるようになったエラーらしいです。このエラーはpullを実行した際の挙動が期待していたものと異なることを避けるためのエラーになります。どういうことかというと、gitでは他のブランチと統合する方法はmergeとrebaseの二種類があり、人によってgit pull をした際にどのような挙動を期待するかが違うため、意図しない挙動を避けるためにこのエラーが存在します。そのためこのエラーはrebaseの設定を明示的にすることで避ける事ができます。mergeとrebaseの違いに関してはこちら

pullの際にrebaseをデフォルトで利用する場合は

git config pull.rebase true

デフォルトでrebaseではなくmergeを行いたい場合は

git config pull.rebase false

また、この場合は実行時に–rebaseオプションをつけることでrebaseをすることができます

git pull --rebase

もしくはfast-forwardのときのみmergeしたい場合(rebaseとmergeが等しい場合のみ実行する場合)は

git config pull.ff only

このようにしてエラーを解決できました。