##// END OF EJS Templates
convert: process missing branches in sorted order
Mads Kiilerich -
r18373:687ed69f default
parent child Browse files
Show More
@@ -110,7 +110,7 b' class mercurial_sink(converter_sink):'
110
110
111 if missings:
111 if missings:
112 self.after()
112 self.after()
113 for pbranch, heads in missings.iteritems():
113 for pbranch, heads in sorted(missings.iteritems()):
114 pbranchpath = os.path.join(self.path, pbranch)
114 pbranchpath = os.path.join(self.path, pbranch)
115 prepo = hg.peer(self.ui, {}, pbranchpath)
115 prepo = hg.peer(self.ui, {}, pbranchpath)
116 self.ui.note(_('pulling from %s into %s\n') % (pbranch, branch))
116 self.ui.note(_('pulling from %s into %s\n') % (pbranch, branch))
@@ -82,7 +82,7 b' incremental conversion'
82 pulling from branch0 into branch2
82 pulling from branch0 into branch2
83 4 changesets found
83 4 changesets found
84 0 c3
84 0 c3
85 pulling from branch2 into branch3
85 pulling from branch1 into branch3
86 5 changesets found
86 5 changesets found
87 pulling from branch1 into branch3
87 pulling from branch2 into branch3
88 1 changesets found
88 1 changesets found
General Comments 0
You need to be logged in to leave comments. Login now