git push报错的最佳解决办法: failed to push some refs to ‘https://github.com/......

git push报错的最佳解决办法: failed to push some refs to ‘https://github.com/......

 git push报错的最佳解决办法: failed to push some refs to ‘https://github.com/......

 

原因:远程库与本地库不一致,hint中也有提示把远程库同步到本地库。


解决办法

		git pull --rebase origin master

这个命令行就是说我们把远端代码更新合并到(pull=fetch+merge)本地库中,–-rebase的作用是取消掉本地库中刚刚的commit&

上一篇:git push错误failed to push some refs to的解决


下一篇:git rebase学习