解决git push错误failed to push some refs to的问题

解决git push错误failed to push some refs to的问题

问题出现的原因:当你修改了线上文件,或者其他文件,但是没有对本地库进行同步。这时你用commit把本地文件提交到github库中时就会出现push失败的问题。下面是我提交时出现的错误:error:failed to push some refs to,如图所示:

解决git push错误failed to push some refs to的问题_第1张图片
这个问题是因为远程库与本地库不一致造成的,那么我们把远程库同步到本地库就可以了。

解决办法:

git pull --rebase origin master

这里意思是把远程库中合并到本地,–rebase的作用是取消掉本地库中之前的提交,如图:

解决git push错误failed to push some refs to的问题_第2张图片
接下来我们就可以正常把本地文件同步到远程库中了!!!

你可能感兴趣的:(GitHub,github,前端)