Mercurial > public > mercurial-scm > hg-stable
diff mercurial/copies.py @ 40422:873f3682c8af stable
narrow: make copies.pathcopies() filter with narrowspec again
I broke this in 707c3804e607 (narrow: move copies overrides to core,
2018-09-28).
Differential Revision: https://phab.mercurial-scm.org/D5203
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 01 Nov 2018 13:20:12 -0700 |
parents | 2e9378f62232 |
children | 07a66c1387d1 |
line wrap: on
line diff
--- a/mercurial/copies.py Thu Nov 01 11:24:45 2018 -0700 +++ b/mercurial/copies.py Thu Nov 01 13:20:12 2018 -0700 @@ -219,6 +219,7 @@ def _forwardcopies(a, b, match=None): """find {dst@b: src@a} copy mapping where a is an ancestor of b""" + match = a.repo().narrowmatch(match) # check for working copy if b.rev() is None: if a == b.p1():