To https://gitee.com/zwunm/weixin.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://gitee.com/zwunm/weixin.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.
时间: 2024-04-06 22:28:49 浏览: 79
git push rejected
这个错误提示是因为你在尝试将本地仓库的更改推送到远程仓库时,发现远程仓库已经存在本地仓库没有的提交记录。通常情况下,这是由于其他人在你之前推送了一些更改,导致你的推送被拒绝。
为了解决这个问题,你需要先将远程仓库的更改拉取到本地,使用如下命令:
```
git pull origin master
```
这个命令会将远程仓库的更改合并到本地仓库中。如果有冲突需要手动解决。然后再进行推送:
```
git push origin master
```
这个命令就可以将本地仓库的更改推送到远程仓库中了。
阅读全文