mirror of
https://github.com/tj/git-extras.git
synced 2026-09-15 01:46:25 -04:00
Initial commit
This commit is contained in:
commit
0b06c14b80
0
History.md
Normal file
0
History.md
Normal file
11
Makefile
Normal file
11
Makefile
Normal 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
|
||||
2
bin/git-count
Executable file
2
bin/git-count
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
#!/usr/bin/env sh
|
||||
echo total `git log --oneline | wc -l`
|
||||
Loading…
Reference in a new issue