How can one change the name of a tag?

后端 未结 5 1209
我在风中等你
我在风中等你 2021-02-19 03:59

I have made a tag in mercurial:

hg tag release_123

Later on I found out that the name was wrong, it should be release_124. Is it pos

5条回答
  •  长发绾君心
    2021-02-19 04:39

    You should be able to edit regular tags in the .hgtags file (and commit it)

    A "regular" tag (with no special specifier) is revision controlled, does propagate with other changes, and lives in the .hgtags file in a repository.

    This old thread mentions you need to do this in all HEADS of a repo though.

提交回复
热议问题