From 6f81b8747f716fdfb61bdafbec6dc7654de24d1c Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Thu, 16 Jun 2016 08:24:01 -0700 Subject: [PATCH] [git] Updates for 2.9 and diff-so-fancy Better diffing, faster submodule fetching, and default to `verbose` on commits. --- .gitconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitconfig b/.gitconfig index df11594..1bb0638 100644 --- a/.gitconfig +++ b/.gitconfig @@ -8,7 +8,7 @@ safecrlf = true excludesfile = /Users/alpha/.gitignore quotepath = false - pager = less -S + pager = diff-so-fancy | less --tabs=4 -RFX [alias] g = grep --break --heading --line-number standup = "!git log --all --date=short --no-merges --pretty=format:\"%h %ad %s%d\" --since=1.weeks --author=`git config user.email`" @@ -51,6 +51,7 @@ [diff] algorithm = patience tool = icdiff + compactionHeuristic = true [fetch] prune = true [tag] @@ -63,3 +64,7 @@ ; insteadof = https://github.com/ [transfer] fsckobjects = true +[submodule] + fetchJobs = 4 +[commit] + verbose = true