Mercurial > public > mercurial-scm > hg
comparison mercurial/cmdutil.py @ 28891:ac30adb260ea
graphmod: shorten graph
Shorten the graph, cutting the all vertical (not oblique) edges rows.
Activate with 'graphshorten = true' in [experimental] section.
Example graph with deactivated option:
$ hg log --graph --template '{rev} {desc|firstline}' --rev 1035:1015
o 1035 Merge with BOS
|\
| o 1034 Fix help output, and a few broken tests.
| |
| o 1033 Merge with MPM.
| |\
| | o 1032 Get patchbomb working with tip again.
| | |
| | o 1031 Rewrite log command. New version is faster and more featureful.
| | |
| | o 1030 Merge with MPM.
| | |\
| | | o 1029 Emacs: implement hg-incoming, hg-outgoing and hg-push.
| | | |
| | | o 1028 Add commands.debugconfig.
| | | |
| | | o 1027 Emacs: fix up hg-log and hg-diff to operate more uniformly.
| | | |
| | | o 1026 Merge with MPM.
| | | |\
| | | | o 1025 Merge with MPM.
| | | | |
| | | | ~
| | | o 1024 Sync buffers prior to doing a diff.
| | | |
| | | ~
o | | 1023 Minor tweak to the revgen algorithm
|/ /
o | 1022 Minor hgwebdir tweaks
| |
o | 1021 Add Makefile to the manifest
| |
o | 1020 Add default make rule
| |
o | 1019 Create helper functions for I/O to files in the working directory
| |
o | 1018 Add some aliases
| |
o | 1017 Fix up help for binary options
|/
o 1016 Teach annotate about binary files
|
o 1015 Add automatic binary file detection to diff and export
|
~
Example graph with activated option:
$ hg log --graph --template '{rev} {desc|firstline}' --rev 1035:1015
o 1035 Merge with BOS
|\
| o 1034 Fix help output, and a few broken tests.
| o 1033 Merge with MPM.
| |\
| | o 1032 Get patchbomb working with tip again.
| | o 1031 Rewrite log command. New version is faster and more featureful.
| | o 1030 Merge with MPM.
| | |\
| | | o 1029 Emacs: implement hg-incoming, hg-outgoing and hg-push.
| | | o 1028 Add commands.debugconfig.
| | | o 1027 Emacs: fix up hg-log and hg-diff to operate more uniformly.
| | | o 1026 Merge with MPM.
| | | |\
| | | | o 1025 Merge with MPM.
| | | | |
| | | | ~
| | | o 1024 Sync buffers prior to doing a diff.
| | | |
| | | ~
o | | 1023 Minor tweak to the revgen algorithm
|/ /
o | 1022 Minor hgwebdir tweaks
o | 1021 Add Makefile to the manifest
o | 1020 Add default make rule
o | 1019 Create helper functions for I/O to files in the working directory
o | 1018 Add some aliases
o | 1017 Fix up help for binary options
|/
o 1016 Teach annotate about binary files
o 1015 Add automatic binary file detection to diff and export
|
~
author | santiagopim <santiagopim@gmail.com> |
---|---|
date | Fri, 08 Apr 2016 16:42:43 +0200 |
parents | 86db5cb55d46 |
children | 80be5dbe6e74 |
comparison
equal
deleted
inserted
replaced
28890:468339891670 | 28891:ac30adb260ea |
---|---|
2238 # experimental config: experimental.graphstyle.* | 2238 # experimental config: experimental.graphstyle.* |
2239 styles[key] = ui.config('experimental', 'graphstyle.%s' % name, | 2239 styles[key] = ui.config('experimental', 'graphstyle.%s' % name, |
2240 styles[key]) | 2240 styles[key]) |
2241 if not styles[key]: | 2241 if not styles[key]: |
2242 styles[key] = None | 2242 styles[key] = None |
2243 | |
2244 # experimental config: experimental.graphshorten | |
2245 state['graphshorten'] = ui.configbool('experimental', 'graphshorten') | |
2246 | |
2243 for rev, type, ctx, parents in dag: | 2247 for rev, type, ctx, parents in dag: |
2244 char = formatnode(repo, ctx) | 2248 char = formatnode(repo, ctx) |
2245 copies = None | 2249 copies = None |
2246 if getrenamed and ctx.rev(): | 2250 if getrenamed and ctx.rev(): |
2247 copies = [] | 2251 copies = [] |