如何通过命令行更改Gerrit的主题名称

我们可以通过以下方式设置初始主题名称: git push origin HEAD:refs / heads / master / topic_name但是我想知道如何通过命令行更改主题名称? 提前致谢。


您可以使用REST设置主题

https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#set-topic


只需以不同的名称推送您的本地分支:

git push <remote> <remote>/<old_name>:refs/heads/<new_name> :<old_name>

在你的情况下:

git push origin HEAD:refs/heads/master/<new_name> :refs/heads/master/topic_name

在这里,你推:

  • 您的本地分支以新的远程名称
  • 对旧分支(它随后被删除)“没有”
  • 链接地址: http://www.djcxy.com/p/90395.html

    上一篇: How to change topic name of Gerrit via command line

    下一篇: How do force merge everything i have locally into the remote master?