本文主要是介绍删除github项目失败时出现:Updates were rejected because the tip of your current branch is behind,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
删除github上的项目失败报错如下
这是由于我本地的仓库和远程github仓库发生了冲突导致的,解决方法如下
1.强制使用push
git push -u origin master -f
注意:使用此方法会使远程的修改丢失,一般是不可取的
2.推送前先将远程仓库的修改pull下来,然后在推送
git pull origin mastergit push -u origin master
这篇关于删除github项目失败时出现:Updates were rejected because the tip of your current branch is behind的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!