Faire un calendrier d'activité git avec gnuplot - retour accueil
git clone git://bebou.netlib.re/git-cal
Log | Files | Refs | README |
makefile (199B)
1 gitfolder=/home/arthur/git 2 author=".*arthur.*" 3 4 all: graph.png 5 6 graph.png: nbofcommits.tsv graph.gp 7 ./graph.gp > $@ 8 9 nbofcommits.tsv: countcommits.sh 10 ./countcommits.sh ${gitfolder} ${author} > $@ 11