【转】使用git更新远程仓库的时候报Updates were rejected because the tip of your current branch is behind错误

原文:https://blog.csdn.net/xiaoduan_/article/details/80904888

今天使用git更新GitHub仓库的时候出现了错误,具体错误如下


错误原因其实是我本地没有README.md这个文件,而远程仓库中有,
如何解决那?
很简单
git pull --rebase origin master
执行这一句就行了
执行完后会发现本地已经有了 README.md 这个文件

然后就是常规操作了
git push -u origin master
之后就可以看到GitHub上已经有了刚上传的新鲜代码啦!

你可能感兴趣的:(【转】使用git更新远程仓库的时候报Updates were rejected because the tip of your current branch is behind错误)