Created
April 3, 2011 01:39
-
-
Save nzjrs/900087 to your computer and use it in GitHub Desktop.
Generate development history statistics for PyGTK
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
OUT="./" | |
PROJ="/home/john/Programming/pygtk.git/" | |
pepper activity --datemin=1998-12-01 --output=${OUT}/activity.png --size=800x600 ${PROJ} | |
pepper activity --split=authors --n=10 --datemin=1998-12-01 --output=${OUT}/activity-auth.png --size=800x600 ${PROJ} | |
pepper activity --split=directories --datemin=1998-12-01 --output=${OUT}/activity-directories.png --size=800x600 ${PROJ} | |
pepper loc --output=${OUT}/loc.png --size=800x600 ${PROJ} | |
pepper loc --tags --output=${OUT}/loc-tags.png --size=3200x600 ${PROJ} | |
pepper commit_counts --period=13years --output=${OUT}/commit-counts.png --size=800x600 ${PROJ} | |
pepper authors --n=12 --output=${OUT}/authors.png --size=800x600 ${PROJ} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment