本文主要是介绍This is usually caused by another repository pushing hint: to the same ref.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
BUG信息及解决办法
C:\Users\Administrator\WebstormProjects\VueElementUiAdmin-master>git push -u origin master
To gitee.com:duanminjie/ElmTestPre.git! [rejected] master -> master (fetch first)
error: failed to push some refs to 'gitee.com:duanminjie/ElmTestPre.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
就使用这个
git pull origin master --allow-unrelated-histories
然后再使用
git push -u origin master
解决过程
这篇关于This is usually caused by another repository pushing hint: to the same ref.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!