summaryrefslogtreecommitdiffstats
path: root/.gitconfig
blob: e97cccbeec87ccea336bf7d9a38266533bca29b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[push]
	default = matching
[user]
	name = bnewbold
	email = bnewbold@robocracy.org
[color]
	ui = true
[alias]
    cdiff = diff --word-diff=color
[github]
	user = bnewbold
[difftool]
    prompt = false
[difftool "diffoscope"]
    cmd = "if [ $LOCAL = /dev/null ]; then diffoscope --new $REMOTE; else diffoscope $LOCAL $REMOTE; fi"
[difftool "diffoscope-html"]
    cmd = "if [ $LOCAL = /dev/null ]; then diffoscope --new $REMOTE --html - | bcat; else diffoscope $LOCAL $REMOTE --html - | bcat; fi"