Reversed order of commits for git day

It makes more sense for the commits to show in chronological order,
starting with the oldest.
This commit is contained in:
Nick Nisi
2013-01-11 10:50:09 -06:00
parent b1b0395195
commit 741b0f97d4

View File

@@ -21,7 +21,7 @@
# undo a commit
undo = reset --soft
# show what I did today
day = "!sh -c 'git log --no-merges --branches=* --date=local --after=\"yesterday 11:59PM\" --author=\"`git config --get user.name`\"'"
day = "!sh -c 'git log --reverse --no-merges --branches=* --date=local --after=\"yesterday 11:59PM\" --author=\"`git config --get user.name`\"'"
# stash shortcuts
sp = stash pop