【工具】解决 git错误 error: failed to push some refs to 'https://github.com/...

目录

问题原因

出现git错误 error: failed to push some refs to 'https://github.com/... 的主要原因是远程库与本地库不一致造成的,在hint中也有提示把远程库同步到本地库就可以了。

问题分析

发生问题时候的状态

【工具】解决 git错误 error: failed to push some refs to 'https://github.com/...

执行 git pull -–rebase origin master 操作

执行 git pull -–rebase origin master 操作,意为先取消commit记录,并且把它们临时保存为补丁(patch)(这些补丁放到”.git/rebase”目录中),之后同步远程库到本地,最后合并补丁到本地库之中。
【工具】解决 git错误 error: failed to push some refs to 'https://github.com/...

最后把本地库push到远程库当中,使本地与远程仓库保持一致

【工具】解决 git错误 error: failed to push some refs to 'https://github.com/...

解决办法

git pull --rebase origin master

该命令的意思是把远程库中的更新合并到(pull=fetch+merge)本地库中,–-rebase的作用是取消掉本地库中刚刚的commit,并把他们接到更新后的版本库之中。

上一篇:更新git 分支代码到最新


下一篇:15套java架构师、集群、高可用、高可扩 展、高性能、高并发、性能优化Redis、ActiveMQ、Nginx、Mycat、Netty、Jvm大型分布式项目实战视频教程