Initial commit

This commit is contained in:
Tj Holowaychuk 2010-08-04 08:48:08 -07:00
commit 0b06c14b80
4 changed files with 13 additions and 0 deletions

0
History.md Normal file
View file

11
Makefile Normal file
View file

@ -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

0
Readme.md Normal file
View file

2
bin/git-count Executable file
View file

@ -0,0 +1,2 @@
#!/usr/bin/env sh
echo total `git log --oneline | wc -l`