mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
6 lines
148 B
Bash
Executable file
6 lines
148 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SINCE="last week"
|
|
test $# -ne 0 && SINCE=$*
|
|
echo "... commits since $SINCE" >&2
|
|
git log --pretty='%an - %s' --after="@{$SINCE}" |