当前位置:   article > 正文

git push 与远程分支不匹配问题_git submodu拉取代码分支不对

git submodu拉取代码分支不对

git push 与远程分支不匹配问题

报错信息

$ git push -u origin master
To git@github.com:TaylorApril/test.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'git@github.com:TaylorApril/test.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.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

这个错误消息表明你尝试推送到远程分支 master 时,远程分支包含你没有本地的工作。这通常是由于其他协作者已经推送了更改到相同的分支,或者在远程仓库中有了不同于你的提交历史。

解决这个问题的常见方法是执行以下操作:

拉取远程更改: 首先,使用 git pull 命令来获取远程仓库的最新更改,并合并到你的本地分支。例如:

git pull origin master
  • 1

这将拉取远程 master 分支的更改并尝试将它们合并到你的本地 master 分支。如果存在冲突,需要解决冲突。

解决冲突: 如果 git pull 引发了冲突,你需要解决这些冲突。打开冲突文件,手动编辑以解决冲突,然后将文件添加到暂存区 (git add )。

继续合并: 完成冲突解决后,继续合并并提交更改。

git commit -m "Merge remote changes"
  • 1

推送更改: 一旦你合并了远程更改并提交了解决冲突的更改,你可以再次尝试使用 git push 推送到远程分支。

git push origin master
  • 1

这样,你的本地分支将与远程分支同步,并且你的更改将被成功推送到远程仓库。

解决方案

git pull --rebase origin master
git push -u origin master
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/778621
推荐阅读
相关标签
  

闽ICP备14008679号