欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

github遇到问题Updates were rejected because the remote contains work that you do hint: not have locally.

发布时间:2025/4/5 编程问答 36 豆豆
生活随笔 收集整理的这篇文章主要介绍了 github遇到问题Updates were rejected because the remote contains work that you do hint: not have locally. 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

文章目录

      • 问题
      • 原因
      • 解决

问题

azheng@lishizheng:/mnt/e/csapp_bilibili/ass$ git push origin main
To https://github.com/shizhengLi/csapp_bilibili.git
! [rejected] main -> main (fetch first)
error: failed to push some refs to ‘https://github.com/shizhengLi/csapp_bilibili.git’
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., ‘git pull …’) before pushing again.
hint: See the ‘Note about fast-forwards’ in ‘git push --help’ for details.
azheng@lishizheng:/mnt/e/csapp_bilibili/ass$

原因

远程repo和本地的repo冲突所导致。例如笔者的问题是,本地readme文件未动,在github页面上更改了readme文件,导致了远程和本地的冲突。

解决

先把远程repo pull到本地,然后再push。

git pull origin main git push origin main

总结

以上是生活随笔为你收集整理的github遇到问题Updates were rejected because the remote contains work that you do hint: not have locally.的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。