0

我正在尝试硬重置主分支,因此它反映了我们“开发”分支的当前状态。

我们不关心 master 上的任何旧提交,并希望重写它的历史。我应该注意,我们正在使用一个名为“<strong>SCM-Manager”的自托管 Git 服务器(没有 GitHub 或类似服务)。我确实对存储库具有“所有者”权限。

我正在使用以下命令强制将 Develop 的状态推送到 Master:

git push origin +develop:master --no-verify --force

但我不断收到此错误消息:

! [rejected]            develop -> master (non-fast-forward)
error: failed to push some refs to 'https://****.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

非常感谢任何帮助。

4

2 回答 2

0

我通过在 SCM-Manager 控制台中删除“master”分支作为默认分支解决了这个问题。

在此处输入图像描述

这允许我删除然后重新创建分支作为“开发”分支的副本。

于 2019-05-13T11:44:48.247 回答
-1

正如错误消息所说:在尝试 git push 之前先 git pull。显然您的本地分支与您的跟踪分支不同步。

于 2019-05-13T09:55:52.323 回答