Git 上传报错
error: failed to push some refs to ‘git@github.com:…..”
Updates were rejected because the remote contains work that you do not have locally. This is usually caused by another repository pushing to
错误原因:在github上修改了文件,没有更新到本地就上传。
解决方法:本地和远程的文件应该合并后才能上传本地的新文件。
具体方法:
1、先拉下来(会自动合并)
git pull origin master
2、再上传
git push -u origin master
本文来自博客园,作者:辉太狼`,转载请注明原文链接:https://www.cnblogs.com/HuiTaiLang1216/p/16141995.html