赞
踩
1、git pull //提示冲突后 2、git stash //放暂存区 3、git pull //成功拉下代码 4、git stash pop //将暂存区的代码还原,会提示代码冲突,解决冲突代码的文件 5、git add . //重新提交一次 6、git commit -m "冲突" 7、git push