From: W. Trevor King Date: Sat, 16 Feb 2013 19:41:23 +0000 (-0500) Subject: .gitconfig: Add a `glog` alias (log --graph --oneline --decorate) X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fc805a8676921726e4d14d5b92f066c0fb6ee3a0;p=dotfiles-public.git .gitconfig: Add a `glog` alias (log --graph --oneline --decorate) I use this a bunch, so save some typing with an alias. The output is especially pretty now that it's automatically colored (thanks, color.ui!). --- diff --git a/src/.gitconfig b/src/.gitconfig index f78b3ea..e19e573 100644 --- a/src/.gitconfig +++ b/src/.gitconfig @@ -23,3 +23,6 @@ [diff "gpg"] textconv = gpg -v xfuncname = "^((pub|uid) .*)" + +[alias] + glog = log --graph --oneline --decorate