Do not lose previous tags when adding a tag in raw mode
authorBrendan Cully <brendan@kublai.com>
Thu, 23 Aug 2007 12:23:07 -0700
changeset 5211 bddb4ff134c0
parent 5201 0f6a1bdf89fb
child 5213 b0bc8cf41ffc
child 5234 b772c0b9f0bd
Do not lose previous tags when adding a tag in raw mode
mercurial/localrepo.py
--- a/mercurial/localrepo.py	Sun Aug 19 14:03:56 2007 -0500
+++ b/mercurial/localrepo.py	Thu Aug 23 12:23:07 2007 -0700
@@ -151,6 +151,8 @@
             except revlog.LookupError:
                 pass
             fp = self.wfile('.hgtags', 'wb')
+            if prevtags:
+                fp.write(prevtags)
 
         # committed tags are stored in UTF-8
         writetag(fp, name, util.fromlocal, prevtags)