赞
踩
1、本地push 到远端发生冲突
2、使用git pull --rebase origin master
git rebase 当前正在基变(我理解为git记录发生改变,远端的代码和本地的代码有冲突。)
git rebase --skip 跳过
git rebase --abort 放弃
git rebase --continue 继续
3、解决冲突,使用git diff 查看冲突的文件。如果有编译器可以用编译器解决冲突(方便点)
4、重新 git add . git commit -m ‘’
5、然后执行git rebase --continue
6、最后使用git push 即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。