aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-10-12README: Add installation instructionsHEADmasterTeddy Wing
Forgot to add a note about installing the required dependency.
2015-10-12Add READMETeddy Wing
Includes a description of the project, example output, and license information.
2015-10-12Add LICENSE (MIT)Teddy Wing
2015-09-29git-stats.sh: Use `--use-mailmap` flagTeddy Wing
Add this flag to our `git log` calls in order to recognise mapped contributors and properly calculate their commit word count and commit days count.
2015-08-20git-stats.sh: Days since first commit graph (fix 83027388)Teddy Wing
Fix commit 83027388670b18143593eef5f171925c97464a3a. * Uncomment commit message word count graph (I had commented it out because it takes a long time) * Turn the 'days since first commit' graph back on an remove debug lines * Remove spaces around date parse call in Ruby line * Comment out Bash pipefail settings. This was causing the 'days since first commit' graph to fail and was part of the reason for the issue I was seeing in 83027388670b18143593eef5f171925c97464a3a. The trouble was that the `git log --pretty` call was returning a non-zero exit code (as far as I can tell), causing the program to exit before processing all the contributors. Remove the Bash settings as a stopgap because the script seems to work fine now.
2015-08-18git-status.sh: First commit date WIPTeddy Wing
Work in progress. Working on showing a graph of the number of days since the first commit for each committer. Getting hung up on the commit date for some reason. It looks like it's exiting after getting the first date and I'm not sure why. Going to commit what I have and go to bed or something and look at this some other time.
2015-08-18git-stats.sh: Graph total words in commit messages per contributorTeddy Wing
Count the words in all non-merge commit messages for each contributor and graph the totals.
2015-08-18git-stats.sh: Rename graph to "Commit count"Teddy Wing
To be more descriptive. Also since we'll be adding additional graphs to the output, it makes sense to call this one what it is.
2015-08-18git-stats.sh: Include full name in graphTeddy Wing
Through the magic of awk!
2015-08-17git-stats.sh: Move shortlog output to variableTeddy Wing
Capture the shortlog output so we can use it later on.
2015-08-17git-stats.sh: Unofficial Bash strict modeTeddy Wing
http://redsymbol.net/articles/unofficial-bash-strict-mode/
2015-08-17Add git-stats.sh to output the shortlog in graph formTeddy Wing
Gets the git shortlog and outputs a graph of the commit count. TODO: Only first names are extracted with awk. Get full names.
2015-08-17Initial commit. Add ascii_graph requirement.Teddy Wing
* Require ascii_graph (https://pypi.python.org/pypi/ascii_graph) to generate some cool text-only graphs * Ignore virtualenv/