Skip to content

Instantly share code, notes, and snippets.

@dedeibel
Last active July 4, 2017 09:00
Show Gist options
  • Save dedeibel/e2ab5c6589c07a9d925b9c58140932c0 to your computer and use it in GitHub Desktop.
Save dedeibel/e2ab5c6589c07a9d925b9c58140932c0 to your computer and use it in GitHub Desktop.
show git commits today / yesterday
git config --global alias.today '!git --no-pager log --pretty=format:"%ad - %s" --date=iso --date-order --reverse --all --since=6:00 --author=bpeter'
git config --global alias.yesterday '!git --no-pager log --pretty=format:"%ad - %s" --date=iso --date-order --reverse --all --since="yesterday 6:00" --until=6:00 --author=bpeter'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment