likes
comments
collection
share

向GitHub推送时出现远程分支需要合并的错误如下图这种 或以下这种 解决办法 目前发现两种 第一种 使用git pul

作者站长头像
站长
· 阅读数 24

如下图这种 向GitHub推送时出现远程分支需要合并的错误如下图这种 或以下这种 解决办法 目前发现两种 第一种 使用git pul 或以下这种

[rejected] master -> master (non-fast forward)
error: failed to push some refs to 'git@github.com:me/me.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes before pushing again.  See the 'non-fast forward'
section of 'git push --help' for details.

解决办法 目前发现两种

第一种

使用git pull在提交对象A和B之间创建合并提交对象C. 或者,使用git pull --rebase在提交对象A之上重新定义X和B之间的更改,然后将结果推回。 rebase将创建一个新的提交对象D,它在A之上构建X和B之间的变化。

第二种

通过在分支名称前添加+符号来强制推送

git push origin +branch

转载自:https://juejin.cn/post/7049243826984058887
评论
请登录