##// END OF EJS Templates
graphmod: rename graph-topological config to graph-group-branches...
Augie Fackler -
r23569:3ecbcffd default
parent child Browse files
Show More
@@ -227,10 +227,10 def dagwalker(repo, revs):
227 lowestrev = revs.min()
227 lowestrev = revs.min()
228 gpcache = {}
228 gpcache = {}
229
229
230 if repo.ui.configbool('experimental', 'graph-topological', False):
230 if repo.ui.configbool('experimental', 'graph-group-branches', False):
231 firstbranch = ()
231 firstbranch = ()
232 firstbranchrevset = repo.ui.config('experimental',
232 firstbranchrevset = repo.ui.config(
233 'graph-topological.firstbranch', '')
233 'experimental', 'graph-group-branches.firstbranch', '')
234 if firstbranchrevset:
234 if firstbranchrevset:
235 firstbranch = repo.revs(firstbranchrevset)
235 firstbranch = repo.revs(firstbranchrevset)
236 parentrevs = repo.changelog.parentrevs
236 parentrevs = repo.changelog.parentrevs
@@ -40,7 +40,7 later.
40
40
41 (display all nodes)
41 (display all nodes)
42
42
43 $ hg --config experimental.graph-topological=1 log -G
43 $ hg --config experimental.graph-group-branches=1 log -G
44 o 8
44 o 8
45 |
45 |
46 o 3
46 o 3
@@ -62,7 +62,7 later.
62
62
63 (revset skipping nodes)
63 (revset skipping nodes)
64
64
65 $ hg --config experimental.graph-topological=1 log -G --rev 'not (2+6)'
65 $ hg --config experimental.graph-group-branches=1 log -G --rev 'not (2+6)'
66 o 8
66 o 8
67 |
67 |
68 o 3
68 o 3
@@ -80,7 +80,7 later.
80
80
81 (begin) from the other branch
81 (begin) from the other branch
82
82
83 $ hg --config experimental.graph-topological=1 --config experimental.graph-topological.firstbranch=5 log -G
83 $ hg --config experimental.graph-group-branches=1 --config experimental.graph-group-branches.firstbranch=5 log -G
84 o 7
84 o 7
85 |
85 |
86 o 6
86 o 6
General Comments 0
You need to be logged in to leave comments. Login now