Add a draft introduction to Git from graphs

This commit is contained in:
Dimitri Lozeve 2021-03-01 20:01:38 +01:00
parent 822d0f1ae0
commit f7aae0452f
24 changed files with 2849 additions and 0 deletions

13
images/git-graphs/repo.m4 Normal file
View file

@ -0,0 +1,13 @@
digraph repo {
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(`feature.dot')
include(`bugfix.dot')
m7 -> f1;
m9 -> b1;
}