Add a draft introduction to Git from graphs
This commit is contained in:
parent
822d0f1ae0
commit
f7aae0452f
24 changed files with 2849 additions and 0 deletions
30
images/git-graphs/repo_labels_ff.m4
Normal file
30
images/git-graphs/repo_labels_ff.m4
Normal file
|
@ -0,0 +1,30 @@
|
|||
digraph repo_labels {
|
||||
rankdir = "LR";
|
||||
bgcolor = "transparent";
|
||||
node[width=0.15, height=0.15, shape=point, color=white, fontcolor=white];
|
||||
edge[weight=2, arrowhead=normal, arrowsize=0.6, color=white];
|
||||
define(`digraph', `subgraph')
|
||||
include(`master.dot')
|
||||
include(`merged.dot')
|
||||
include(`bugfix.dot')
|
||||
m9 -> b1;
|
||||
node[color=green];
|
||||
edge[color=green];
|
||||
include(`feature.dot')
|
||||
m10 -> f1;
|
||||
|
||||
node[shape=box, color=white, fontname="monospace"];
|
||||
edge[color=white];
|
||||
subgraph labels {
|
||||
rank = "max";
|
||||
HEAD [style=dashed];
|
||||
master;
|
||||
feature;
|
||||
bugfix;
|
||||
}
|
||||
edge[arrowhead=none, style=dashed];
|
||||
f3 -> HEAD;
|
||||
f3 -> master;
|
||||
f3 -> feature;
|
||||
b2 -> bugfix;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue