Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just as the title says: I have made a tag in mercurial.

hg tag release_123

But later on I found out that the name was wrong, it should be release_124. Is it possible to simply rename the tag or do I have to create a new one?

share|improve this question

2 Answers

up vote 9 down vote accepted

I would do it by removing the tag and then adding a new tag with the new name

The Mercurial tag wiki explains how to remove a tag:

How do I remove a tag?

Either by

  • hg tag --remove tagname

(this being the nearest equivalent to cvs tag -d)

  • adding tagname 0000000000000000000000000000000000000000 to the end of .hgtags

  • removing all references to tagname in .hgtags (but this might confuse the multiple-head tag collision resolution algorithm)

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.