Git遇到的问题
git pull origin master
二次提交代码的时候需要先pull在push可能会遇到一下问题
三级目录
fatal: refusing to merge unrelated histories
解决方法:
git pull origin master --allow-unrelated-histories
若此时pull下来的代码与你本地的代码出现冲突即
Automatic merge failed; fix conflicts and then commit the result.
解决方法:
你需要去你原来的代码中,去找对比pull下来的代码和你的代码冲突对的地方 删除不需要的代码。
重新git add 这些冲突的文件,然后 commit ,
如果你不知道哪些代码需要重新git add 使用git status 查看
没有问题之后,重新 pull 然后 push