Skip to content

Instantly share code, notes, and snippets.

@nzjrs
Created April 3, 2011 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nzjrs/900087 to your computer and use it in GitHub Desktop.
Save nzjrs/900087 to your computer and use it in GitHub Desktop.
Generate development history statistics for PyGTK
#!/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