本文主要是介绍git push 报错hint: Updates were rejected because the tip of your current branch is behind hint: its re,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
网上搜索了下,是因为远程repository和本地的repository冲突导致的,
例如 在创建版本库后,在github的版本库页面点击了创建README.md文件的按钮创建了说明文档,但是却没有pull到本地。这样就产生了版本冲突的问题。
解决方法:
1.使用强制push的方法:
git push -u origin master -f
这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。
2.push前先将远程repository修改pull下来
git pull origin master 加上 origin master
git push -u origin master
3.创建分支提交到分支上
这篇关于git push 报错hint: Updates were rejected because the tip of your current branch is behind hint: its re的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!