赞
踩
报错信息
$ 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.
这个错误消息表明你尝试推送到远程分支 master 时,远程分支包含你没有本地的工作。这通常是由于其他协作者已经推送了更改到相同的分支,或者在远程仓库中有了不同于你的提交历史。
解决这个问题的常见方法是执行以下操作:
拉取远程更改: 首先,使用 git pull
命令来获取远程仓库的最新更改,并合并到你的本地分支。例如:
git pull origin master
这将拉取远程 master 分支的更改并尝试将它们合并到你的本地 master 分支。如果存在冲突,需要解决冲突。
解决冲突: 如果 git pull
引发了冲突,你需要解决这些冲突。打开冲突文件,手动编辑以解决冲突,然后将文件添加到暂存区 (git add
)。
继续合并: 完成冲突解决后,继续合并并提交更改。
git commit -m "Merge remote changes"
推送更改: 一旦你合并了远程更改并提交了解决冲突的更改,你可以再次尝试使用 git push
推送到远程分支。
git push origin master
这样,你的本地分支将与远程分支同步,并且你的更改将被成功推送到远程仓库。
解决方案
git pull --rebase origin master
git push -u origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。