얼마 전 새로 장비를 업데이트를 하고 개발 환경 셋팅 후 git을 통해 pull을 받으려고 할 때
Pulling without specifying how to reconcile divergent branches is discouraged
라는 오류가 발생하였다.
해당 오류의 내용은 git 2.27부터 새로 추가된 기능으로, repo를 pull 할 시, rebase, merge, fast-forward 중 어떤 방식으로 pull 할 것인지 명시하라는 내용이다.
git config pull.ff only
git config --global pull.ff only