在 gerrit 中创建评论
我已经将一些代码推送到 gerrit,创建了一个我相信的分支。我已经更新了我的代码,再次提交并推送(没有错误),但是 gerrit 中没有任何正在创建的评论的迹象。
知道我应该在哪里寻找或者我可能会错过哪些步骤吗?提前致谢。
编辑:我是否正在推动掌握它应该在 HEAD:refs/for/something 的位置?
I've pushed some code to gerrit, creating a branch I believe. I've since updated my code, committed and pushed again (without error), but there is no sign in gerrit of any reviews being created.
Any idea where I should be looking or what step I'm likely to be missing? Thanks in advance.
Edit: Could it be that I'm pushing to master where it should be HEAD:refs/for/something ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
推送的输出将告诉您发生了什么,包括给您链接。
是的,您应该推送到
refs/for/master
而不是master
(它将扩展到refs/heads/master
- 绕过审核)。The output of the push will tell you what happened, including give you links.
And yes, you should push to
refs/for/master
and notmaster
(which will expand torefs/heads/master
-- bypassing review).