hgbook
diff fr/figs/bad-merge-4.dot @ 964:6b680d569bb4
deleting a bunch of files not longer necessary to build the documentation.
Adding missing newly files needed to build the documentation
Adding missing newly files needed to build the documentation
author | Romain PELISSE <belaran@gmail.com> |
---|---|
date | Sun Aug 16 04:58:01 2009 +0200 (2009-08-16) |
parents | en/figs/bad-merge-4.dot@7226e5e750a6 |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fr/figs/bad-merge-4.dot Sun Aug 16 04:58:01 2009 +0200 1.3 @@ -0,0 +1,26 @@ 1.4 +digraph bad_merge_4 { 1.5 + ancestor [label="1: ancestor",color="#bbbbbb",fontcolor="#bbbbbb"]; 1.6 + left [label="2: my change",color="#bbbbbb",fontcolor="#bbbbbb"]; 1.7 + right [label="3: your change",color="#bbbbbb",fontcolor="#bbbbbb"]; 1.8 + bad [label="4: bad merge",color="#bbbbbb",fontcolor="#bbbbbb"]; 1.9 + new [label="5: new change",color="#bbbbbb",fontcolor="#bbbbbb"]; 1.10 + 1.11 + bak_left [label="6: backout 1 of\nbad merge",color=grey,fontcolor=grey,shape=box]; 1.12 + bak_right [label="7: backout 2 of\nbad merge",color=grey,fontcolor=grey,shape=box]; 1.13 + good [label="8: merge\nof backouts",shape=box]; 1.14 + 1.15 + ancestor -> left [color="#bbbbbb"]; 1.16 + ancestor -> right [color="#bbbbbb"]; 1.17 + left -> bad [color="#bbbbbb"]; 1.18 + right -> bad [color="#bbbbbb"]; 1.19 + bad -> new [color="#bbbbbb"]; 1.20 + 1.21 + bad -> bak_left [color=grey]; 1.22 + left -> bak_left [style=dotted,label="--parent=2",color=grey,fontcolor=grey]; 1.23 + 1.24 + bad -> bak_right [color=grey]; 1.25 + right -> bak_right [style=dotted,label="--parent=3",color=grey,fontcolor=grey]; 1.26 + 1.27 + bak_left -> good; 1.28 + bak_right -> good; 1.29 +}