Merge pull request #153 from themalkolm/master

Update bin/git-count
This commit is contained in:
TJ Holowaychuk 2012-11-17 11:45:07 -08:00
commit ee0097b448

View file

@ -1,7 +1,7 @@
#!/bin/sh
if test "$1" = "--all"; then
git shortlog -n $@ | grep "):$" | sed 's|:||'
git shortlog -n -s $@ | awk '{print substr($0,index($0,$2)) " (" $1 ")"}'
echo
fi