From 2ef4d93ce49bbaed4585be6fb4230288b4c405c8 Mon Sep 17 00:00:00 2001 From: Daryl Robbins Date: Sat, 23 Mar 2013 12:28:32 -0400 Subject: [PATCH] Added support for git user configuration. Gitconfig will now include the configuration from ~/.gitconfig.user, if it exists. The include is done at the end of gitconfig, so that it can override any of the default values. --- git/gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git/gitconfig b/git/gitconfig index f46e97a..5563409 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -115,3 +115,5 @@ # Remember my merges # http://gitfu.wordpress.com/2008/04/20/git-rerere-rereremember-what-you-did-last-time/ enabled = true +[include] + path = .gitconfig.user