##// END OF EJS Templates
merge: infer the "other" changeset when falling back to v1 format...
Pierre-Yves David -
r20592:303cbfe3 stable
parent child Browse files
Show More
@@ -74,6 +74,10 b' class mergestate(object):'
74 74 for rev in v1records:
75 75 if rev not in allv2:
76 76 # v1 file is newer than v2 file, use it
77 # we have to infer the "other" changeset of the merge
78 # we cannot do better than that with v1 of the format
79 mctx = self._repo[None].parents()[-1]
80 v1records.append(('O', mctx.hex()))
77 81 return v1records
78 82 else:
79 83 return v2records
General Comments 0
You need to be logged in to leave comments. Login now