How to change topic name of Gerrit via command line
我们可以通过以下方式设置初始主题名称:git push origin head:refs/heads/master/topicu名称但我想知道以后如何通过命令行更改主题名称?事先谢谢。
可以使用rest设置主题
https://gerrit review.googlesource.com/documentation/rest api changes.html设置主题
只需将您的本地分支机构推到另一个名称下:
1 | git push <remote> <remote>/:refs/heads/<new_name> : |
在您的情况下:
1 | git push origin HEAD:refs/heads/master/<new_name> :refs/heads/master/topic_name |
号
在这里,你推动:
- 您的本地分支使用新的远程名称
- "无"到旧分支(然后删除)