838 ctx = self._repo[None] |
838 ctx = self._repo[None] |
839 return ctx.walk(match) |
839 return ctx.walk(match) |
840 |
840 |
841 @annotatesubrepoerror |
841 @annotatesubrepoerror |
842 def forget(self, match, prefix, dryrun, interactive): |
842 def forget(self, match, prefix, dryrun, interactive): |
843 return cmdutil.forget(self.ui, self._repo, match, |
843 return cmdutil.forget(self.ui, self._repo, match, prefix, |
844 self.wvfs.reljoin(prefix, self._path), |
|
845 True, dryrun=dryrun, interactive=interactive) |
844 True, dryrun=dryrun, interactive=interactive) |
846 |
845 |
847 @annotatesubrepoerror |
846 @annotatesubrepoerror |
848 def removefiles(self, matcher, prefix, after, force, subrepos, |
847 def removefiles(self, matcher, prefix, after, force, subrepos, |
849 dryrun, warnings): |
848 dryrun, warnings): |