mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
8 lines
148 B
Bash
Executable file
8 lines
148 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
user="$*"
|
|
|
|
test -z "$user" && echo "user name required." 1>&2 && exit 1
|
|
|
|
git shortlog --format=format:"%h %s" --author="$user"
|