To ssh://192.168.0.248:29418/test_gerrit_jenkins ! [remote rejected] HEAD -> master (cannot combine normal pushes and magic pushes) ! [remote rejected] refs/for/master (cannot combine normal pushes and magic pushes) error: failed to push some refs to 'ssh://192.168.0.248:29418/test_gerrit_jenkins'
时间: 2024-03-29 15:35:21 浏览: 296
解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法
这个错误提示表明你试图在 Gerrit 上进行一个普通的 push 操作,但 Gerrit 配置了 magic push,导致 push 操作失败。在 Gerrit 上,你需要使用 magic push 来提交变更。请尝试使用 `git push origin HEAD:refs/for/master` 命令来提交变更。如果你还没有配置好 Gerrit 的 SSH 密钥,你需要先生成 SSH 密钥,然后将公钥添加到 Gerrit 的用户设置中。
阅读全文