aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-10-12 11:28:21 -0400
committerTeddy Wing2015-10-12 11:28:21 -0400
commit31207f7f614594540f1b6687ce2e843c0199867c (patch)
treebfad68ffa2f64da08e7b1bfa6339192aa038631c
parent02ef79201fd92e86725360032688403de0a2aaba (diff)
downloadgit-stats-31207f7f614594540f1b6687ce2e843c0199867c.tar.bz2
Add README
Includes a description of the project, example output, and license information.
-rw-r--r--README.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..71c95f9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,35 @@
+git-stats
+=========
+
+A small Bash script that outputs graphs of contributor statistics for a given
+Git repository.
+
+Uses [py-ascii-graph](https://github.com/kakwa/py-ascii-graph) to create the
+graphs.
+
+Three graphs are generated:
+
+1. Commit count
+2. Commit word count
+3. Days since first commit
+
+Depending on the size of your repository, the last 2 will likely take a while
+to complete.
+
+Here's an example from this repository:
+
+ $ git-stats.sh git-stats
+
+ Commit count
+ ###############################################################################
+ ████████████████████████████████████████████████████████████ 11.0 Teddy Wing
+ Commit message word count
+ ###############################################################################
+ ████████████████████████████████████████████████████████████ 369.0 Teddy Wing
+ Days since first commit
+ ###############################################################################
+ ███████████████████████████████████████████████████████████ 56.0 Teddy Wing
+
+
+## License
+Licensed under the MIT license. See the included LICENSE file.