I have $HG_NODE referencing the changeset from which I wish to start:
[vcs@Quake /tmp/test/advanced]$ hg log -r $HG_NODE: --template '{node|short}:{files}\n'
c5eefea063fd:1.txt backup.cmd notes.txt
370f9ef91471:1.txt backup.cmd notes.txt
5eac12f79df6:advanced/Program.cs advanced/a advanced/b advanced/notes.txt lab6/scratch2/Fiobonacci.sln lab6/scratch2/Program.cs lab6/scratch2/xxx lab6/scratch2/yyy
4be96f43f327:advanced/1.txt
c724950dd2a6:advanced/Fiobonacci.csproj advanced/aaa.kuku
Now, I also have a directory, which is of a particular interest to me. So, I wish to get all the changesets from the starting one affecting the files in this directory.
First, I tried to check if I can get it for a specific file:
[vcs@Quake /tmp/test/advanced]$ hg log -r "$HG_NODE: and file('path:advanced/1.txt')" --template '{node|short}\n'
4be96f43f327
Then, for all the files in that directory. But I seem to be missing something:
[vcs@Quake /tmp/test/advanced]$ hg log -r "$HG_NODE: and file('path:advanced/**')" --template '{node|short}\n'
[vcs@Quake /tmp/test/advanced]$ hg log -r "$HG_NODE: and file('set:advanced/**')" --template '{node|short}\n'
abort: fileset expression with no context
[vcs@Quake /tmp/test/advanced]$ hg log -r "$HG_NODE: and file('glob:advanced/**')" --template '{node|short}\n'
[vcs@Quake /tmp/test/advanced]$ hg log -r "$HG_NODE: and file('advanced/**')" --template '{node|short}\n'
[vcs@Quake /tmp/test/advanced]$ hg log -r "$HG_NODE: and file('re:^advanced/.*')" --template '{node|short}\n'
5eac12f79df6
4be96f43f327
c724950dd2a6
Only the re: prefix works for me, but this is something that should work with glob: as well.
How can I make it work with glob: and ** ?
globsuggestion works for me (my test repo has a subdir calleddd):hg log --style compact -r "0: and file('glob:dd/**')". Note that I'm using Windows, and not using an environment variable to reference the first node, tho'. – icabod Dec 20 '12 at 16:01%HGNset (yes, still using Windows):hg log -r "%HGN%: and file('glob:dd/**')" --template {node^|short}\n– icabod Dec 20 '12 at 16:04advanceddirectory. If you replace theglob:advanced/**withglob:**does it work? – icabod Dec 20 '12 at 16:07