-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
35 lines (31 loc) · 915 Bytes
/
.gitconfig
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
26
27
28
29
30
31
32
33
34
35
[user]
name = Adam H. Leventhal
#email = [email protected]
#email = [email protected]
email = [email protected]
[core]
excludesfile = ~/.gitignore.global
[pager]
log = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less
show = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less
diff = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less
[alias]
outgoing = ! git log --name-status $(git merge-base HEAD origin/master)..HEAD
[color]
ui = always
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
#[push]
#default = tracking
[branch]
autosetupmerge = always
#[credential "https://git-codecommit.us-west-2.amazonaws.com"]
#helper = !aws codecommit credential-helper $@
#UseHttpPath = true
[credential]
helper = osxkeychain
[pull]
rebase = false