Merge pull request #578 from tardypad/count_fix_extra_arguments

count: remove usage of extra arguments for detailed display
This commit is contained in:
罗泽轩 2016-12-05 09:49:03 +08:00 committed by GitHub
commit 15ae263312

View file

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