tj.git-extras/bin/git-commits-since
2010-08-12 07:45:04 -07:00

6 lines
138 B
Bash
Executable file

#!/bin/sh
SINCE="last week"
test $# -ne 0 && SINCE=$@
echo "... commits since $SINCE" >&2
git log --pretty='%an - %s' --after="@{$SINCE}"