Git

    git pull 경고없애기 - Pulling without specifying how to reconcile divergent branches is discouraged

    얼마전 맥북을 새로 사고 기존 레포지토리들을 풀받다가 벌어진 일이다. 알아보니 Git 2.27 부터 새로 추가된 기능이라 한다. repo를 pull 땡길때는 rebase, merge, fast-forward 방법이 있는데(기존에도 존재햇음), 이제 이를 명시적으로 정해달라고 warning을 띄워주는듯하다. 해결법 해당 레포지토리만 silence 하려면 git config pull.ff only 향후 모든 레포지토리에 대해 적용하려면 git config --global pull.ff only https://stackoverflow.com/questions/62653114/how-to-deal-with-this-git-warning-pulling-without-specifying-how-to-reconcil..