git push时提示:更新被拒绝,因为您当前分支的最新提交落后于其对应的远程分支

来源:互联网 发布:arnold for maya mac 编辑:程序博客网 时间:2024/06/05 17:22

在对本地库中的文件执行修改后,想git push推送到远程库中,结果在git push的时候提示出错:

! [rejected]        master -> master (non-fast-forward)
error: 无法推送一些引用到 'git@github.com:GarfieldEr007/XXXX.git'
提示:更新被拒绝,因为您当前分支的最新提交落后于其对应的远程分支。
提示:再次推送前,先与远程变更合并(如 'git pull ...')。详见
提示:'git push --help' 中的 'Note about fast-forwards' 小节。

解决方案:

因为当前分支的最新提交落后于其对应的远程分支,所以我们先从远程库fetch到更新再和本地库合并,之后就可以git push操作了.


git remote add origin https://github.com/username/test.git    $git fetch origin  $git merge origin/master 


阅读全文
0 0