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
12
images/git-graphs/Makefile
Normal file
12
images/git-graphs/Makefile
Normal file
|
@ -0,0 +1,12 @@
|
|||
INPUTS=$(wildcard *.m4)
|
||||
TARGETS=$(INPUTS:.m4=.svg)
|
||||
|
||||
.PHONY: all
|
||||
all: $(TARGETS)
|
||||
|
||||
%.svg: %.m4 master.dot merged.dot feature.dot bugfix.dot
|
||||
m4 $< | dot -Tsvg -o $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f $(TARGETS)
|
Loading…
Add table
Add a link
Reference in a new issue