Mercurial > evolve
diff tests/test-topic-tutorial.t @ 3418:85cdce113c2c mercurial-4.3
test-compat: merge stable into mercurial-4.3
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 16 Jan 2018 04:35:34 +0100 |
parents | 9f900937c198 e1f3e43a50a4 |
children | 1e2f683e11e7 42b3ac0a5b05 |
line wrap: on
line diff
--- a/tests/test-topic-tutorial.t Sat Dec 16 23:40:39 2017 +0100 +++ b/tests/test-topic-tutorial.t Tue Jan 16 04:35:34 2018 +0100 @@ -53,8 +53,10 @@ finalized (moved to the public phase). They can help users to organize and share their unfinished work. -In this tutorial, we explain how to use topics for local development. In the first part, -there is a central *publishing* server. Anything pushed to the central server will become public and immutable This means no unfinished work should escapes the local repository. +In this tutorial, we explain how to use topics for local development. In the +first part, there is a central *publishing* server. Anything pushed to the +central server will become public and immutable. This means no unfinished work +should escape the local repository. Topic Basics @@ -73,21 +75,21 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 0 [fillcolor="#9999FF", + 0 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=0, pin=true, pos="1,0!", shape=circle, style=filled, - width=0.5]; + width=1]; } #endif @@ -123,21 +125,21 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 0 [fillcolor="#9999FF", + 0 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=0, pin=true, pos="1,0!", shape=circle, style=filled, - width=0.5]; + width=1]; } #endif @@ -166,21 +168,21 @@ $ hg docgraph -r "topic("food")" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 1 [fillcolor="#9999FF", + 1 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=1, pin=true, pos="1,1!", shape=pentagon, style=filled, - width=0.5]; + width=1]; } #endif @@ -213,31 +215,31 @@ $ hg docgraph -r "topic("food")" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 1 [fillcolor="#9999FF", + 1 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=1, pin=true, pos="1,1!", shape=pentagon, style=filled, - width=0.5]; - 2 [fillcolor="#9999FF", + width=1]; + 2 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=2, pin=true, pos="1,2!", shape=pentagon, style=filled, - width=0.5]; + width=1]; 1 -> 2 [arrowhead=none, penwidth=2.0]; } @@ -288,43 +290,43 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 0 [fillcolor="#9999FF", + 0 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=0, pin=true, pos="1,0!", shape=circle, style=filled, - width=0.5]; - 1 [fillcolor="#9999FF", + width=1]; + 1 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=1, pin=true, pos="1,1!", shape=pentagon, style=filled, - width=0.5]; + width=1]; 0 -> 1 [arrowhead=none, penwidth=2.0]; - 2 [fillcolor="#9999FF", + 2 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=2, pin=true, pos="1,2!", shape=pentagon, style=filled, - width=0.5]; + width=1]; 1 -> 2 [arrowhead=none, penwidth=2.0]; } @@ -411,55 +413,55 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 0 [fillcolor="#9999FF", + 0 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=0, pin=true, pos="1,0!", shape=circle, style=filled, - width=0.5]; - 1 [fillcolor="#9999FF", + width=1]; + 1 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=1, pin=true, pos="1,1!", shape=pentagon, style=filled, - width=0.5]; + width=1]; 0 -> 1 [arrowhead=none, penwidth=2.0]; - 3 [fillcolor="#9999FF", + 3 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=3, pin=true, pos="1,3!", shape=circle, style=filled, - width=0.5]; + width=1]; 0 -> 3 [arrowhead=none, penwidth=2.0]; - 2 [fillcolor="#9999FF", + 2 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=2, pin=true, pos="1,2!", shape=pentagon, style=filled, - width=0.5]; + width=1]; 1 -> 2 [arrowhead=none, penwidth=2.0]; } @@ -518,60 +520,72 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 0 [fillcolor="#9999FF", + 0 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=0, pin=true, pos="1,0!", shape=circle, style=filled, - width=0.5]; - 3 [fillcolor="#9999FF", + width=1]; + 3 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=3, pin=true, pos="1,3!", shape=circle, style=filled, - width=0.5]; + width=1]; 0 -> 3 [arrowhead=none, penwidth=2.0]; - 4 [fillcolor="#9999FF", + 4 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=4, pin=true, pos="1,4!", shape=pentagon, style=filled, - width=0.5]; + width=1]; 3 -> 4 [arrowhead=none, penwidth=2.0]; - 5 [fillcolor="#9999FF", + 5 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=5, pin=true, pos="1,5!", shape=pentagon, style=filled, - width=0.5]; + width=1]; 4 -> 5 [arrowhead=none, penwidth=2.0]; } #endif +There exists a template keyword named "topic" which can be used + + $ hg log -GT "{rev}:{node|short} {topic}\n {desc}" + @ 5:2d50db8b5b4c food + | adding fruits + o 4:4011b46eeb33 food + | adding condiments + o 3:6104862e8b84 + | Adding clothes + o 0:38da43f0a2ea + Shopping list + The topic information will disappear when we publish the changesets: $ hg topics @@ -626,55 +640,55 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { + strict digraph "Mercurial graph" { graph [rankdir=LR, splines=polyline ]; node [label="\N"]; - 0 [fillcolor="#9999FF", + 0 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=0, pin=true, pos="1,0!", shape=circle, style=filled, - width=0.5]; - 3 [fillcolor="#9999FF", + width=1]; + 3 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=3, pin=true, pos="1,3!", shape=circle, style=filled, - width=0.5]; + width=1]; 0 -> 3 [arrowhead=none, penwidth=2.0]; - 4 [fillcolor="#9999FF", + 4 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=4, pin=true, pos="1,4!", shape=circle, style=filled, - width=0.5]; + width=1]; 3 -> 4 [arrowhead=none, penwidth=2.0]; - 5 [fillcolor="#9999FF", + 5 [fillcolor="#7F7FFF", fixedsize=true, group=default, - height=0.5, + height=1, label=5, pin=true, pos="1,5!", shape=circle, style=filled, - width=0.5]; + width=1]; 4 -> 5 [arrowhead=none, penwidth=2.0]; } @@ -695,8 +709,8 @@ Keep working within topics ========================== -Making sure all your new local commit are made within a topic will help your -organise your work. It is possible to ensure this through the Mercurial +Making sure all your new local commit are made within a topic will help you +organize your work. It is possible to ensure this through the Mercurial configuration. For this tutorial, we'll add the config at the repository level: @@ -726,7 +740,7 @@ Working with Multiple Topics ============================ -In the above example, topics do not bring much benefits since you only have one +In the above example, topics do not bring many benefits since you only have one line of development. Topics start to be more useful when you have to work on multiple features at the same time. @@ -895,141 +909,141 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { - graph [rankdir=LR, - splines=polyline - ]; - node [label="\N"]; - 0 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=0, - pin=true, - pos="1,0!", - shape=circle, - style=filled, - width=0.5]; - 3 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=3, - pin=true, - pos="1,3!", - shape=circle, - style=filled, - width=0.5]; - 0 -> 3 [arrowhead=none, - penwidth=2.0]; - 4 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=4, - pin=true, - pos="1,4!", - shape=circle, - style=filled, - width=0.5]; - 3 -> 4 [arrowhead=none, - penwidth=2.0]; - 5 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=5, - pin=true, - pos="1,5!", - shape=circle, - style=filled, - width=0.5]; - 4 -> 5 [arrowhead=none, - penwidth=2.0]; - 6 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=6, - pin=true, - pos="1,6!", - shape=pentagon, - style=filled, - width=0.5]; - 5 -> 6 [arrowhead=none, - penwidth=2.0]; - 9 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=9, - pin=true, - pos="1,9!", - shape=pentagon, - style=filled, - width=0.5]; - 5 -> 9 [arrowhead=none, - penwidth=2.0]; - 11 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=11, - pin=true, - pos="1,11!", - shape=circle, - style=filled, - width=0.5]; - 5 -> 11 [arrowhead=none, - penwidth=2.0]; - 7 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=7, - pin=true, - pos="1,7!", - shape=pentagon, - style=filled, - width=0.5]; - 6 -> 7 [arrowhead=none, - penwidth=2.0]; - 8 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=8, - pin=true, - pos="1,8!", - shape=pentagon, - style=filled, - width=0.5]; - 7 -> 8 [arrowhead=none, - penwidth=2.0]; - 10 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=10, - pin=true, - pos="1,10!", - shape=pentagon, - style=filled, - width=0.5]; - 9 -> 10 [arrowhead=none, - penwidth=2.0]; - 12 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=12, - pin=true, - pos="1,12!", - shape=circle, - style=filled, - width=0.5]; - 11 -> 12 [arrowhead=none, - penwidth=2.0]; + strict digraph "Mercurial graph" { + graph [rankdir=LR, + splines=polyline + ]; + node [label="\N"]; + 0 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=0, + pin=true, + pos="1,0!", + shape=circle, + style=filled, + width=1]; + 3 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=3, + pin=true, + pos="1,3!", + shape=circle, + style=filled, + width=1]; + 0 -> 3 [arrowhead=none, + penwidth=2.0]; + 4 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=4, + pin=true, + pos="1,4!", + shape=circle, + style=filled, + width=1]; + 3 -> 4 [arrowhead=none, + penwidth=2.0]; + 5 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=5, + pin=true, + pos="1,5!", + shape=circle, + style=filled, + width=1]; + 4 -> 5 [arrowhead=none, + penwidth=2.0]; + 6 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=6, + pin=true, + pos="1,6!", + shape=pentagon, + style=filled, + width=1]; + 5 -> 6 [arrowhead=none, + penwidth=2.0]; + 9 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=9, + pin=true, + pos="1,9!", + shape=pentagon, + style=filled, + width=1]; + 5 -> 9 [arrowhead=none, + penwidth=2.0]; + 11 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=11, + pin=true, + pos="1,11!", + shape=circle, + style=filled, + width=1]; + 5 -> 11 [arrowhead=none, + penwidth=2.0]; + 7 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=7, + pin=true, + pos="1,7!", + shape=pentagon, + style=filled, + width=1]; + 6 -> 7 [arrowhead=none, + penwidth=2.0]; + 8 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=8, + pin=true, + pos="1,8!", + shape=pentagon, + style=filled, + width=1]; + 7 -> 8 [arrowhead=none, + penwidth=2.0]; + 10 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=10, + pin=true, + pos="1,10!", + shape=pentagon, + style=filled, + width=1]; + 9 -> 10 [arrowhead=none, + penwidth=2.0]; + 12 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=12, + pin=true, + pos="1,12!", + shape=circle, + style=filled, + width=1]; + 11 -> 12 [arrowhead=none, + penwidth=2.0]; } #endif @@ -1238,97 +1252,98 @@ $ hg docgraph -r "t0::" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { - graph [rankdir=LR, - splines=polyline - ]; - node [label="\N"]; - 12 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=12, - pin=true, - pos="1,12!", - shape=circle, - style=filled, - width=0.5]; - 13 [fillcolor="#DFDFFF", - fixedsize=true, - group=default_alt, - height=0.5, - label=13, - pin=true, - pos="2,13!", - shape=pentagon, - style="dotted, filled", - width=0.5]; - 12 -> 13 [arrowhead=none, - penwidth=2.0]; - 18 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=18, - pin=true, - pos="1,18!", - shape=pentagon, - style=filled, - width=0.5]; - 12 -> 18 [arrowhead=none, - penwidth=2.0]; - 16 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=16, - pin=true, - pos="1,16!", - shape=circle, - style=filled, - width=0.5]; - 12 -> 16 [arrowhead=none, - penwidth=2.0]; - 13 -> 18 [arrowhead=none, - minlen=0, - penwidth=2.0, - style=dashed]; - 14 [fillcolor="#FF4F4F", - fixedsize=true, - group=default_alt, - height=0.5, - label=14, - pin=true, - pos="2,14!", - shape=pentagon, - style=filled, - width=0.5]; - 13 -> 14 [arrowhead=none, - penwidth=2.0]; - 15 [fillcolor="#FF4F4F", - fixedsize=true, - group=default_alt, - height=0.5, - label=15, - pin=true, - pos="2,15!", - shape=pentagon, - style=filled, - width=0.5]; - 14 -> 15 [arrowhead=none, - penwidth=2.0]; - 17 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=17, - pin=true, - pos="1,17!", - shape=circle, - style=filled, - width=0.5]; - 16 -> 17 [arrowhead=none, - penwidth=2.0]; + strict digraph "Mercurial graph" { + graph [rankdir=LR, + splines=polyline + ]; + node [label="\N"]; + 12 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=12, + pin=true, + pos="1,12!", + shape=circle, + style=filled, + width=1]; + 13 [fillcolor="#DFDFFF", + fixedsize=true, + group=default_alt, + height=1, + label=13, + pin=true, + pos="2,13!", + shape=pentagon, + style="dotted, filled", + width=1]; + 12 -> 13 [arrowhead=none, + penwidth=2.0]; + 18 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=18, + pin=true, + pos="1,18!", + shape=pentagon, + style=filled, + width=1]; + 12 -> 18 [arrowhead=none, + penwidth=2.0]; + 16 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=16, + pin=true, + pos="1,16!", + shape=circle, + style=filled, + width=1]; + 12 -> 16 [arrowhead=none, + penwidth=2.0]; + 13 -> 18 [arrowtail=none, + dir=back, + minlen=0, + penwidth=2.0, + style=dashed]; + 14 [fillcolor="#FF4F4F", + fixedsize=true, + group=default_alt, + height=1, + label=14, + pin=true, + pos="2,14!", + shape=pentagon, + style=filled, + width=1]; + 13 -> 14 [arrowhead=none, + penwidth=2.0]; + 15 [fillcolor="#FF4F4F", + fixedsize=true, + group=default_alt, + height=1, + label=15, + pin=true, + pos="2,15!", + shape=pentagon, + style=filled, + width=1]; + 14 -> 15 [arrowhead=none, + penwidth=2.0]; + 17 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=17, + pin=true, + pos="1,17!", + shape=circle, + style=filled, + width=1]; + 16 -> 17 [arrowhead=none, + penwidth=2.0]; } #endif @@ -1418,81 +1433,81 @@ $ hg docgraph -r "t0::" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { - graph [rankdir=LR, - splines=polyline - ]; - node [label="\N"]; - 12 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=12, - pin=true, - pos="1,12!", - shape=circle, - style=filled, - width=0.5]; - 16 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=16, - pin=true, - pos="1,16!", - shape=circle, - style=filled, - width=0.5]; - 12 -> 16 [arrowhead=none, - penwidth=2.0]; - 18 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=18, - pin=true, - pos="1,18!", - shape=pentagon, - style=filled, - width=0.5]; - 12 -> 18 [arrowhead=none, - penwidth=2.0]; - 17 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=17, - pin=true, - pos="1,17!", - shape=circle, - style=filled, - width=0.5]; - 16 -> 17 [arrowhead=none, - penwidth=2.0]; - 19 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=19, - pin=true, - pos="1,19!", - shape=pentagon, - style=filled, - width=0.5]; - 18 -> 19 [arrowhead=none, - penwidth=2.0]; - 20 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=20, - pin=true, - pos="1,20!", - shape=pentagon, - style=filled, - width=0.5]; - 19 -> 20 [arrowhead=none, - penwidth=2.0]; + strict digraph "Mercurial graph" { + graph [rankdir=LR, + splines=polyline + ]; + node [label="\N"]; + 12 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=12, + pin=true, + pos="1,12!", + shape=circle, + style=filled, + width=1]; + 16 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=16, + pin=true, + pos="1,16!", + shape=circle, + style=filled, + width=1]; + 12 -> 16 [arrowhead=none, + penwidth=2.0]; + 18 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=18, + pin=true, + pos="1,18!", + shape=pentagon, + style=filled, + width=1]; + 12 -> 18 [arrowhead=none, + penwidth=2.0]; + 17 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=17, + pin=true, + pos="1,17!", + shape=circle, + style=filled, + width=1]; + 16 -> 17 [arrowhead=none, + penwidth=2.0]; + 19 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=19, + pin=true, + pos="1,19!", + shape=pentagon, + style=filled, + width=1]; + 18 -> 19 [arrowhead=none, + penwidth=2.0]; + 20 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=20, + pin=true, + pos="1,20!", + shape=pentagon, + style=filled, + width=1]; + 19 -> 20 [arrowhead=none, + penwidth=2.0]; } #endif Multi-headed stack @@ -1600,153 +1615,153 @@ $ hg docgraph -r "all()" --sphinx-directive --rankdir LR #rest-ignore .. graphviz:: - strict digraph { - graph [rankdir=LR, - splines=polyline - ]; - node [label="\N"]; - 0 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=0, - pin=true, - pos="1,0!", - shape=circle, - style=filled, - width=0.5]; - 3 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=3, - pin=true, - pos="1,3!", - shape=circle, - style=filled, - width=0.5]; - 0 -> 3 [arrowhead=none, - penwidth=2.0]; - 4 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=4, - pin=true, - pos="1,4!", - shape=circle, - style=filled, - width=0.5]; - 3 -> 4 [arrowhead=none, - penwidth=2.0]; - 5 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=5, - pin=true, - pos="1,5!", - shape=circle, - style=filled, - width=0.5]; - 4 -> 5 [arrowhead=none, - penwidth=2.0]; - 11 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=11, - pin=true, - pos="1,11!", - shape=circle, - style=filled, - width=0.5]; - 5 -> 11 [arrowhead=none, - penwidth=2.0]; - 12 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=12, - pin=true, - pos="1,12!", - shape=circle, - style=filled, - width=0.5]; - 11 -> 12 [arrowhead=none, - penwidth=2.0]; - 16 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=16, - pin=true, - pos="1,16!", - shape=circle, - style=filled, - width=0.5]; - 12 -> 16 [arrowhead=none, - penwidth=2.0]; - 18 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=18, - pin=true, - pos="1,18!", - shape=pentagon, - style=filled, - width=0.5]; - 12 -> 18 [arrowhead=none, - penwidth=2.0]; - 17 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=17, - pin=true, - pos="1,17!", - shape=circle, - style=filled, - width=0.5]; - 16 -> 17 [arrowhead=none, - penwidth=2.0]; - 19 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=19, - pin=true, - pos="1,19!", - shape=pentagon, - style=filled, - width=0.5]; - 18 -> 19 [arrowhead=none, - penwidth=2.0]; - 21 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=21, - pin=true, - pos="1,21!", - shape=pentagon, - style=filled, - width=0.5]; - 18 -> 21 [arrowhead=none, - penwidth=2.0]; - 20 [fillcolor="#9999FF", - fixedsize=true, - group=default, - height=0.5, - label=20, - pin=true, - pos="1,20!", - shape=pentagon, - style=filled, - width=0.5]; - 19 -> 20 [arrowhead=none, - penwidth=2.0]; + strict digraph "Mercurial graph" { + graph [rankdir=LR, + splines=polyline + ]; + node [label="\N"]; + 0 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=0, + pin=true, + pos="1,0!", + shape=circle, + style=filled, + width=1]; + 3 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=3, + pin=true, + pos="1,3!", + shape=circle, + style=filled, + width=1]; + 0 -> 3 [arrowhead=none, + penwidth=2.0]; + 4 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=4, + pin=true, + pos="1,4!", + shape=circle, + style=filled, + width=1]; + 3 -> 4 [arrowhead=none, + penwidth=2.0]; + 5 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=5, + pin=true, + pos="1,5!", + shape=circle, + style=filled, + width=1]; + 4 -> 5 [arrowhead=none, + penwidth=2.0]; + 11 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=11, + pin=true, + pos="1,11!", + shape=circle, + style=filled, + width=1]; + 5 -> 11 [arrowhead=none, + penwidth=2.0]; + 12 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=12, + pin=true, + pos="1,12!", + shape=circle, + style=filled, + width=1]; + 11 -> 12 [arrowhead=none, + penwidth=2.0]; + 16 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=16, + pin=true, + pos="1,16!", + shape=circle, + style=filled, + width=1]; + 12 -> 16 [arrowhead=none, + penwidth=2.0]; + 18 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=18, + pin=true, + pos="1,18!", + shape=pentagon, + style=filled, + width=1]; + 12 -> 18 [arrowhead=none, + penwidth=2.0]; + 17 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=17, + pin=true, + pos="1,17!", + shape=circle, + style=filled, + width=1]; + 16 -> 17 [arrowhead=none, + penwidth=2.0]; + 19 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=19, + pin=true, + pos="1,19!", + shape=pentagon, + style=filled, + width=1]; + 18 -> 19 [arrowhead=none, + penwidth=2.0]; + 21 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=21, + pin=true, + pos="1,21!", + shape=pentagon, + style=filled, + width=1]; + 18 -> 21 [arrowhead=none, + penwidth=2.0]; + 20 [fillcolor="#7F7FFF", + fixedsize=true, + group=default, + height=1, + label=20, + pin=true, + pos="1,20!", + shape=pentagon, + style=filled, + width=1]; + 19 -> 20 [arrowhead=none, + penwidth=2.0]; } #endif @@ -1808,7 +1823,7 @@ added 4 changesets with 4 changes to 1 files (+1 heads) 8 new obsolescence markers -Pushing the new topic branch to a non publishing server did not require +Pushing the new topic branch to a non-publishing server did not require --force. As long as new heads are on their own topic, Mercurial will not complain about them. @@ -1856,7 +1871,7 @@ adding file changes added 1 changesets with 1 changes to 1 files -And retrieve them on the first client: +And retrieve them from the first client: $ cd ../client