hgbook

view it/figs/bad-merge-1.dot @ 832:ea5ae4dd787b

Add images.
author Giulio@puck
date Tue Aug 18 17:19:30 2009 +0200 (2009-08-18)
parents
children 793e15b562ef
line source
1 digraph bad_merge_1 {
2 ancestor [label="1: antenato"];
3 left [label="2: mia modifica"];
4 right [label="3: vostra modifica"];
5 bad [label="4: unione sbagliata"];
6 new [label="5: nuova modifica"];
8 ancestor -> left;
9 ancestor -> right;
10 left -> bad;
11 right -> bad;
12 bad -> new;
13 }