summaryrefslogtreecommitdiffstats
path: root/gitconfig
blob: 2478573f62e24e98aa5bc8300159ae7f44cb28d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[user]
	email = doy@tozt.net
	name = Jesse Luehrs
[alias]
	pushall = !git push origin master && git push github master
	amend = commit --amend
	record = !git add -p && git commit
	rebase-branch = !git rebase -i $(git merge-base master HEAD)
	diff-branch = !git diff $(git merge-base master HEAD)..HEAD
	log-branch = !git log $(git merge-base master HEAD)..HEAD
[github]
	user = doy
[color]
	diff = auto
	status = auto
	branch = auto
	interactive = auto
[core]
	excludesfile = /home/doy/.gitignore
[push]
	default = current
[branch]
	autosetuprebase = always
[merge]
	tool = vimdiff