From e5361c3198169f5d99fd8c3f7c5d792321e6f47b Mon Sep 17 00:00:00 2001 From: Newton Date: Mon, 21 Jul 2014 21:20:08 -0700 Subject: [PATCH] Update git config - Update git aliases to verbosely list out branch and remotes - Ensure full path when showing Git status Issue: #1 --- conf/git/config | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/conf/git/config b/conf/git/config index c6cd24d..5a3d04d 100755 --- a/conf/git/config +++ b/conf/git/config @@ -15,6 +15,12 @@ # Add untracked, remove deleted, and show status adda = !git add -A && git status + # Sets git branch default to list verbosely + branch = !git branch --list -v + + # Sets git remote default to list verbosely + remote = !git remote -v + # Fetch a repository ($1) and checkout its ref ($2) HEAD # Use: `git browse https://github.com/necolas/dotfiles ` browse = !bash -c 'git fetch $1 ${2:-HEAD} && git checkout FETCH_HEAD' - @@ -167,3 +173,7 @@ # reuse the recorded resolutions [rerere] enabled = 1 + +[status] + # always show the full path + relativePaths = false