标签:strong file 目录 提交 pull 查看 git 冲突 错误
当多人上传同一项目代码出现冲突时:
例如:
有一个仓库Test,两个同学A和B,分别clone到自己的本地目录,A同学修改文件file(push到github),B同学也修改了文件file,B同学提交时出现冲突错误:
解决:
git pull(将 本地目录与github仓库保持一致)
git diff(查看冲突部分)
修改本地文件file
git push(上传到github仓库)
标签:strong file 目录 提交 pull 查看 git 冲突 错误
原文地址:http://www.cnblogs.com/jasonhaven/p/7587284.html