mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Added --all support to git-count
This commit is contained in:
parent
0b06c14b80
commit
bb721be895
|
|
@ -1,2 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
if test "$1" = "--all"; then
|
||||
git shortlog | grep "):" | sed 's|:||'
|
||||
fi
|
||||
|
||||
echo total `git log --oneline | wc -l`
|
||||
Loading…
Reference in a new issue