Comments
Patch
@@ -1530,17 +1530,12 @@ class localrepository(object):
if (not isinstance(ctx1, context.changectx)
and isinstance(ctx2, context.changectx)):
reversed = True
ctx1, ctx2 = ctx2, ctx1
- working = ctx2.rev() is None
listignored, listclean, listunknown = ignored, clean, unknown
- # load earliest manifest first for caching reasons
- if not working and ctx2.rev() < ctx1.rev():
- ctx2.manifest()
-
r = [[], [], [], [], [], [], []]
match = ctx2._matchstatus(ctx1, r, match, listignored, listclean,
listunknown)
r = ctx2._prestatus(ctx1, r, match, listignored, listclean, listunknown)
r = ctx2._generatestatus(ctx1, r, match, listignored, listclean,