Skip to content

Instantly share code, notes, and snippets.

@willprice
Created May 7, 2015 14:14
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 willprice/a620f8519de9e5fa4bb2 to your computer and use it in GitHub Desktop.
Save willprice/a620f8519de9e5fa4bb2 to your computer and use it in GitHub Desktop.
Git analytics
#!/bin/bash
OUTPUT=stats.html
echo "Generating statistics"
gitinspector \
--hard=true \
--file-types=cshtml,coffee,cs \
--format=htmlembedded \
--grading=true \
--exclude=".*css" \
MeetingRoomManagementTool > "$OUTPUT"
[ $? -eq 0 ] && echo "Stats generated and saved in $OUTPUT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment