##// END OF EJS Templates
subrepo: process merge substate in sorted order in submerge()...
Adrian Buehlmann -
r13857:ba1f98f8 default
parent child Browse files
Show More
@@ -144,7 +144,7 b' def submerge(repo, wctx, mctx, actx, ove'
144 144 debug(s, "prompt remove")
145 145 wctx.sub(s).remove()
146 146
147 for s, r in s2.items():
147 for s, r in sorted(s2.items()):
148 148 if s in s1:
149 149 continue
150 150 elif s not in sa:
General Comments 0
You need to be logged in to leave comments. Login now