##// END OF EJS Templates
narrow: fix copies._fullcopytracing() narrowspec filtering in graft case...
Martin von Zweigbergk -
r40489:07a66c13 stable
parent child Browse files
Show More
@@ -511,8 +511,9 b' def _fullcopytracing(repo, c1, c2, base)'
511 511 # unmatched file from topological common ancestors (no DAG rotation)
512 512 # need to recompute this for directory move handling when grafting
513 513 mta = tca.manifest()
514 u1u, u2u = _computenonoverlap(repo, c1, c2, m1.filesnotin(mta),
515 m2.filesnotin(mta),
514 u1u, u2u = _computenonoverlap(repo, c1, c2,
515 m1.filesnotin(mta, repo.narrowmatch()),
516 m2.filesnotin(mta, repo.narrowmatch()),
516 517 baselabel='topological common ancestor')
517 518
518 519 for f in u1u:
@@ -71,5 +71,4 b' create full repo'
71 71 $ hg ci -Aqm 'add inside/f5'
72 72 $ hg --config extensions.rebase= rebase -d 'public()' -r .
73 73 rebasing 6:610b60178c28 "add inside/f5" (tip)
74 abort: data/outside/f3.i@54e53435331b: no match found!
75 [255]
74 saved backup bundle to $TESTTMP/narrow/.hg/strip-backup/610b60178c28-65716a78-rebase.hg
General Comments 0
You need to be logged in to leave comments. Login now