From 741b0f97d476a6858add23a894c0294e9d49985d Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Fri, 11 Jan 2013 10:50:09 -0600 Subject: [PATCH] Reversed order of commits for `git day` It makes more sense for the commits to show in chronological order, starting with the oldest. --- git/gitconfig.symlink | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/gitconfig.symlink b/git/gitconfig.symlink index 0c89123..2d10213 100644 --- a/git/gitconfig.symlink +++ b/git/gitconfig.symlink @@ -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