commit 0b06c14b807ed1b405b8a53f7757143a2e61bc7e Author: Tj Holowaychuk Date: Wed Aug 4 08:48:08 2010 -0700 Initial commit diff --git a/History.md b/History.md new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0965d86 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +BINS = bin/git-count +PREFIX = /usr/local + +install: + cp -f $(BINS) $(PREFIX)/bin + +uninstall: + rm -f $(PREFIX)/bin/git-count + +.PHONY: install uninstall \ No newline at end of file diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..e69de29 diff --git a/bin/git-count b/bin/git-count new file mode 100755 index 0000000..d4eaabb --- /dev/null +++ b/bin/git-count @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +echo total `git log --oneline | wc -l` \ No newline at end of file