Mercurial > hg-stable
changeset 25316:a4acf019dd5b
merge with stable
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 28 May 2015 16:09:42 -0500 |
parents | e28245b0da56 (current diff) 884ef09cf658 (diff) |
children | 5a5b7046d00e |
files | |
diffstat | 2 files changed, 21 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/convert/hg.py Tue May 26 23:02:19 2015 -0700 +++ b/hgext/convert/hg.py Thu May 28 16:09:42 2015 -0500 @@ -128,7 +128,10 @@ continue revid = revmap.get(source.lookuprev(s[0])) if not revid: - continue + if s[0] == hex(nullid): + revid = s[0] + else: + continue fp.write('%s %s\n' % (revid, s[1])) return fp.getvalue()
--- a/tests/test-convert-hg-source.t Tue May 26 23:02:19 2015 -0700 +++ b/tests/test-convert-hg-source.t Thu May 28 16:09:42 2015 -0500 @@ -38,6 +38,13 @@ (branch merge, don't forget to commit) $ hg ci -m 'merge remote copy' -d '4 0' created new head + +Make and delete some tags + + $ hg tag that + $ hg tag --remove that + $ hg tag this + #if execbit $ chmod +x baz #else @@ -50,11 +57,14 @@ scanning source... sorting... converting... - 5 add foo bar - 4 change foo - 3 make bar and baz copies of foo - 2 merge local copy - 1 merge remote copy + 8 add foo bar + 7 change foo + 6 make bar and baz copies of foo + 5 merge local copy + 4 merge remote copy + 3 Added tag that for changeset 88586c4e9f02 + 2 Removed tag that + 1 Added tag this for changeset c56a7f387039 0 mark baz executable updating bookmarks $ cd new @@ -66,12 +76,12 @@ #if execbit $ hg bookmarks premerge1 3:973ef48a98a4 - premerge2 5:13d9b87cf8f8 + premerge2 8:91d107c423ba #else Different hash because no x bit $ hg bookmarks premerge1 3:973ef48a98a4 - premerge2 5:df0779bcf33c + premerge2 8:3537b15eaaca #endif $ cd ..