-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
55 lines (55 loc) · 1.12 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[user]
name = ltackett
email = [email protected]
[color]
ui = always
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = green
changed = yellow
untracked = cyan
[alias]
st = status
ci = commit
co = checkout
staged = diff --cached
unstaged = diff
both = diff HEAD
oneline = log --pretty=oneline
amend = commit --amend
[merge]
tool = git-chdiff
[diff]
mnemonicprefix = true
[format]
numbered = auto
[core]
legacyheaders = false
editor = vim
whitespace = -trailing-space
excludesfile = /Users/ltackett/.gitignore_global
[repack]
usedeltabaseoffset = true
[branch]
autosetupmerge = true
[pager]
status = false
[push]
default = simple
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true