# HG changeset patch # User Siddharth Agarwal # Date 1418769293 28800 # Node ID a04c7b74b3d53eaa010eaf51e6df623c65a62bd4 # Parent 7d7a4848fff412dcf40636d93074d7394dc46d31 ignore: resolve ignore files relative to repo root (issue4473) (BC) Previously these would be considered to be relative to the current working directory. That behavior is both undocumented and doesn't really make sense. There are two reasonable options for how to resolve relative paths: - relative to the repo root - relative to the config file Resolving these files relative to the repo root matches existing behavior with hooks. An earlier discussion about this is available at http://mercurial.markmail.org/thread/tvu7yhzsiywgkjzl. Thanks to Isaac Jurado for the initial patchset that spurred the discussion. diff -r 7d7a4848fff4 -r a04c7b74b3d5 mercurial/dirstate.py --- a/mercurial/dirstate.py Wed Dec 17 18:53:38 2014 -0800 +++ b/mercurial/dirstate.py Tue Dec 16 14:34:53 2014 -0800 @@ -130,7 +130,9 @@ files = [self._join('.hgignore')] for name, path in self._ui.configitems("ui"): if name == 'ignore' or name.startswith('ignore.'): - files.append(util.expandpath(path)) + # we need to use os.path.join here rather than self._join + # because path is arbitrary and user-specified + files.append(os.path.join(self._rootdir, util.expandpath(path))) return ignore.ignore(self._root, files, self._ui.warn) @propertycache diff -r 7d7a4848fff4 -r a04c7b74b3d5 mercurial/help/config.txt --- a/mercurial/help/config.txt Wed Dec 17 18:53:38 2014 -0800 +++ b/mercurial/help/config.txt Tue Dec 16 14:34:53 2014 -0800 @@ -1338,11 +1338,11 @@ ``ignore`` A file to read per-user ignore patterns from. This file should be - in the same format as a repository-wide .hgignore file. This - option supports hook syntax, so if you want to specify multiple - ignore files, you can do so by setting something like - ``ignore.other = ~/.hgignore2``. For details of the ignore file - format, see the ``hgignore(5)`` man page. + in the same format as a repository-wide .hgignore file. Filenames + are relative to the repository root. This option supports hook syntax, + so if you want to specify multiple ignore files, you can do so by + setting something like ``ignore.other = ~/.hgignore2``. For details + of the ignore file format, see the ``hgignore(5)`` man page. ``interactive`` Allow to prompt the user. True or False. Default is True. diff -r 7d7a4848fff4 -r a04c7b74b3d5 tests/test-hgignore.t --- a/tests/test-hgignore.t Wed Dec 17 18:53:38 2014 -0800 +++ b/tests/test-hgignore.t Tue Dec 16 14:34:53 2014 -0800 @@ -80,13 +80,23 @@ empty out testhgignore $ echo > .hg/testhgignore - $ echo "glob:*.o" > .hgignore + +Test relative ignore path (issue4473): + + $ cat >> $HGRCPATH << EOF + > [ui] + > ignore.relative = .hg/testhgignorerel + > EOF + $ echo "glob:*.o" > .hg/testhgignorerel + $ cd dir $ hg status A dir/b.o ? .hgignore ? a.c ? syntax + $ cd .. + $ echo > .hg/testhgignorerel $ echo "syntax: glob" > .hgignore $ echo "re:.*\.o" >> .hgignore $ hg status