깃:에러
개요
각종 에러 모음
에러
Pulling without specifying how to reconcile divergent branches is discouraged........
pull로 땡길 때 다양한 방식이 생겨났는데, 이 방식을 명확하게 해달라는 내용의 에러이다.
git config pull.ff only
혹은 git config --global pull.ff only
명령을 실행해준다.
Fatal: Not possible to fast-forward, aborting.
git pull --rebase
Please commit your changes or stash them before you merge. Aborting
한 가지에 대해 여러사람이 작업한 경우; pull로 땡겨와야 하지만, 서버에서 별도의 작업이 이루어진 경우 발생한다.
git stash 후에 git pull을 하면 된다.