Comments
Patch
@@ -204,11 +204,16 @@ def _committedforwardcopies(a, b, match)
fctx = b[f]
fctx._ancestrycontext = ancestrycontext
+ if debug:
+ start = util.timer()
ofctx = _tracefile(fctx, am, limit)
if ofctx:
if debug:
dbg('debug.copies: rename of: %s\n' % ofctx._path)
cm[f] = ofctx.path()
+ if debug:
+ dbg('debug.copies: time: %s seconds\n'
+ % (util.timer() - start))
return cm
def _forwardcopies(a, b, match=None):
@@ -1676,6 +1676,7 @@ Check debug output for copy tracing
debug.copies: missing file to search: 1
debug.copies: tracing file: renamed
debug.copies: rename of: f
+ debug.copies: time: * seconds (glob)
A renamed
f
R f