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