git 해결 error: you need to resolve your current index first

770 단어 git
질문:
전환 코드 분기git checkout featrue2019-06-24, 오류는 다음과 같습니다.
error: you need to resolve your current index first

git pull 코드를 실행하는 중 오류 발생:
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm '
as appropriate to mark resolution, or use 'git commit -a'.

원인: 한 지점 A에서 다른 지점 B로 전환한 후 전환된 B지점에 대해pull작업을 진행한다.pull작업은 실제로fetch+merge작업을 포함하기 때문에merge작업을 수행할 때 B지점에 대해pull/merge작업을 오랫동안 실행하지 않았기 때문에 로컬 B지점과remote의 B지점 라이브러리의 차이가 매우 크고merge가 실패하여merge상태에 머물러pull작업을 수행할 수 없다.
해결 방안:merge로 되돌아가기 전에 지점을 전환하면 됩니다
git reset --merge 

참조:https://blog.csdn.net/jiangyu1013/article/details/78853407

좋은 웹페이지 즐겨찾기