https://www.cnblogs.com/sunshine-xin/articles/3521481.html 1. git rm --cached file will remove the file from the stage. That is, when you commit the file will be removed. git reset HEAD -- file will simply reset file in the staging area to the state…
我是使用一台电脑测试, 然后在本地电脑创建了两个工作目录.专门用来模拟两个人提交代码.假设a.b两个人.只使用一个master分支做测试, 没有建立其他的分支. 主要就是为了研究冲突的解决方式.感觉git pull总是强制覆盖. a修改了代码并且提交master分支. 1) 测试一: 远程master分支已改变,然后b现在也修改了代码.不过b还没有提交,直接git pull ,不能拉取代码.报错提示: error: Your local changes to the following file…