##// END OF EJS Templates
copies: limit is an optimization, and doesn't provide guarantees
Gábor Stefanik -
r30045:12cac1e4 default
parent child Browse files
Show More
@@ -465,6 +465,11 b' def checkcopies(ctx, f, m1, m2, ca, limi'
465 diverge = record all diverges in this dict
465 diverge = record all diverges in this dict
466 copy = record all non-divergent copies in this dict
466 copy = record all non-divergent copies in this dict
467 fullcopy = record all copies in this dict
467 fullcopy = record all copies in this dict
468
469 note: limit is only an optimization, and there is no guarantee that
470 irrelevant revisions will not be limited
471 there is no easy way to make this algorithm stop in a guaranteed way
472 once it "goes behind a certain revision".
468 """
473 """
469
474
470 ma = ca.manifest()
475 ma = ca.manifest()
General Comments 0
You need to be logged in to leave comments. Login now