mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
9 lines
160 B
Bash
Executable file
9 lines
160 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
arg=$1; shift
|
|
if test "$arg" = "--all"; then
|
|
git shortlog -n $@ | grep "):" | sed 's|:||'
|
|
echo
|
|
fi
|
|
|
|
echo total `git log --oneline | wc -l` |