在执行git的时候报:
error: Pulling is not possible because you have unmerged files.
hint: Fix them up in the work tree, and then use 'git add/rm ’
hint: as appropriate to mark resolution and make a commit.
fatal: Exiting because of an unresolved conflict.
1、这时候需要执行:git pull origin master
这时候他说你本地有冲突
2、如果你有提交的话,先跳过本次的commit:git rebase --skip
3、重新拉取git pull
4、这时候他跟你说了哪个文件有冲突
5、要么git add 这个文件 要么跳过git rebase --skip 然后重新拉取,重新提交,使用git rebase --skip 可能导致你之前的修改没有了 ,相当于在冲突的时候你接收他们的了