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