##// END OF EJS Templates
Merge with mpm
Merge with mpm

File last commit:

r4352:051fb8c2 default
r4537:2f489b00 merge default
Show More
map-cmdline.default
21 lines | 1.1 KiB | text/plain | TextLexer
Alexis S. L. Carvalho
command line templates: add formatnode filter...
r4352 changeset = 'changeset: {rev}:{node|short}\n{branches}{tags}{parents}user: {author}\ndate: {date|date}\nsummary: {desc|firstline}\n\n'
Vadim Gelfer
add changeset_quiet to templates.
r1919 changeset_quiet = '{rev}:{node|short}\n'
Thomas Arendsen Hein
Add new branch info to templater and use it in map-cmdline.default....
r3461 changeset_verbose = 'changeset: {rev}:{node|short}\n{branches}{tags}{parents}{manifest}user: {author}\ndate: {date|date}\n{files}{file_adds}{file_dels}{file_copies}description:\n{desc|strip}\n\n\n'
Thomas Arendsen Hein
Added extra changeset info to templater and map-cmdline.default.
r3462 changeset_debug = 'changeset: {rev}:{node}\n{branches}{tags}{parents}{manifest}user: {author}\ndate: {date|date}\n{files}{file_adds}{file_dels}{file_copies}{extras}description:\n{desc|strip}\n\n\n'
Thomas Arendsen Hein
Adjust default cmdline style to really match verbose/debug log.
r3459 start_files = 'files: '
file = ' {file}'
end_files = '\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 start_file_adds = 'files+: '
file_add = ' {file_add}'
end_file_adds = '\n'
start_file_dels = 'files-: '
file_del = ' {file_del}'
end_file_dels = '\n'
Brendan Cully
Show copies in hg log....
r3197 start_file_copies = 'copies: '
file_copy = ' {name} ({source})'
end_file_copies = '\n'
Alexis S. L. Carvalho
command line templates: add formatnode filter...
r4352 parent = 'parent: {rev}:{node|formatnode}\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 manifest = 'manifest: {rev}:{node}\n'
Thomas Arendsen Hein
Add new branch info to templater and use it in map-cmdline.default....
r3461 branch = 'branch: {branch}\n'
Vadim Gelfer
make --style=compact look for map-cmdline.compact....
r1914 tag = 'tag: {tag}\n'
Thomas Arendsen Hein
Added extra changeset info to templater and map-cmdline.default.
r3462 extra = 'extra: {key}={value|stringescape}\n'