我正在尝试硬重置主分支,因此它反映了我们“开发”分支的当前状态。
我们不关心 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.
非常感谢任何帮助。