Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 4, 2010
0 parents commit 0b06c14
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
Empty file added History.md
Empty file.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Empty file added Readme.md
Empty file.
2 changes: 2 additions & 0 deletions bin/git-count
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env sh
echo total `git log --oneline | wc -l`

0 comments on commit 0b06c14

Please sign in to comment.