hgext/convert/hg.py
changeset 21635 5f2cc464e502
parent 21634 23b24d6a70c8
child 21689 503bb3af70fe
--- a/hgext/convert/hg.py	Mon May 19 22:11:14 2014 +0200
+++ b/hgext/convert/hg.py	Mon May 19 22:12:30 2014 +0200
@@ -253,6 +253,10 @@
             destmarks[bookmark] = bin(updatedbookmark[bookmark])
         destmarks.write()
 
+    def hascommitfrommap(self, rev):
+        # the exact semantics of clonebranches is unclear so we can't say no
+        return rev in self.repo or self.clonebranches
+
     def hascommitforsplicemap(self, rev):
         if rev not in self.repo and self.clonebranches:
             raise util.Abort(_('revision %s not found in destination '