Submitter | phabricator |
---|---|
Date | Oct. 1, 2021, 9:42 a.m. |
Message ID | <differential-rev-PHID-DREV-rpaurjyobtvmsflqy2c3-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/49858/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -2017,7 +2017,7 @@ def matches(self, match): match = self._repo.narrowmatch(match) ds = self._repo.dirstate - return sorted(f for f in ds.matches(match) if ds[f] != b'r') + return sorted(f for f in ds.matches(match) if ds.get_entry(f).tracked) def markcommitted(self, node): with self._repo.dirstate.parentchange():