I was wondering, how do I return files added/modified/deleted for a commit in such a format:
<modifier> file
<modifier> path/to/a/file
<modifier> path/to/another/file
In git I do this: "git show --pretty="format:" --name-status commitish" and get:
D file
A path/to/a/file
M path/to/another/file
For mercurial I can't figure out how to do it with templates. I have a style file:
changeset = "{file_mods}{file_adds}{file_dels}"
file_add = "A {file_add}\n"
file_mod = "M {file_mod}\n"
file_del = "D {file_del}\n"
and with this style and command "hg log -r commitish --style ~/.hgstyle" I get almost what I want:
M path/to/another/file
A path/to/a/file
D file
There is still one issue with mercurial - files are not sorted in good order.
How do I get the same result as on git command (with modifiers and sorted correctly) on mercurial?