Last active
July 4, 2017 09:00
-
-
Save dedeibel/e2ab5c6589c07a9d925b9c58140932c0 to your computer and use it in GitHub Desktop.
show git commits today / yesterday
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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