12
Git push拒绝了“非快进”
对于git目前在团队环境中使用它来管理我们的代码,我还很陌生。我遇到了一些变基问题,并使用 git checkout --ours filename.txt git add filename.txt git rebase --continue 现在,我希望推送更改,因此运行以下命令 $ git push origin feature/my_feature_branch 给我以下错误: To ssh://git@coderepo.com:7999/repo/myproject.git ! [rejected] feature/my_feature_branch -> feature/my_feature_branch (non-fast-forward) error: failed to push some refs to 'ssh://git@coderepo.com:7999/repo/myproject.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote …