nosync-quiet option added courtesy Robin Johnson (Gentoo project)
[gitolite-doc.git] / docs / basic.gv
bloba63012f07b931f101c309eeeb869de3f494322a0
1 digraph G {
3     node [ shape = box ]
4     edge [ color = gray ]
6     emergency [ style = filled fillcolor = red label = "stuck?\nDON'T panic!" ]
7     node [ fontcolor = blue color = blue ]
8     introduction [ fontcolor = blue color = blue label = "introduction\nwhat, why, ..." ]
9     user [ label = "what your USERS\nneed to know"]
10     emergency -> introduction [ style = invis ]
11     introduction -> "doc index" [ style = invis ]
12     "doc index" -> user [ style = invis ]
13     emergency
15     node [ fontcolor = red color = red ]
16     minreq [ label = "minimum requirements" ]
17     try [ label = "trying it out\nsafely" ]
18     node [ fontcolor = darkgreen color = darkgreen ]
19     run [ label = "using gitolite" ]
20     quick [ label = "quick\ninstall/setup/clone" ]
21     detailed [ label = "(detailed)" ]
22     admin [ label = "basic administration" ]
23     v2 [ fontcolor = gray color = gray label = "migrating from v2" ]
25     gitolite [ label = "gitolite basics" style = filled fillcolor = lightblue ]
26     gitolite [ label = "gitolite\nbasic install and use" style = filled fillcolor = lightblue ]
27     gitolite -> minreq
28     gitolite -> try
29     gitolite -> v2
30     gitolite -> run
32     run -> quick
33     quick -> detailed [ label = "failed?" ]
34     detailed -> install
35     detailed -> setup
36     detailed -> clone
38     run -> admin
40     admin -> "add users"
41     admin -> "add repos"
42     admin -> "access control rules"