在push的时候报错:error: failed to push some refs to ‘github.smec-cn.com:u3794/circulate-remind-service.git’
大致意思是当前仓库与远程仓库冲突,远程仓库的部分东西本地仓库没有,例如远程仓库有readme.md文档本地没有就会报错。
解决方法:git pull origin master --allow-unrelated-histories
然后就可以正常push了!
记录解决思路如下:
解决思路来自:https://blog.csdn.net/m0_51715325/article/details/121789720
git在push到远程仓库的时候报错Updates were rejected because the remote contains work that you do
含义:
远程仓库的部分东西本地仓库没有,例如远程仓库有readme.md文档本地没有就会报错。
解决方法:
先拉取远程仓库的分支(一般为master)
git pull origin master
再push
git push -u origin master