-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
41 lines (41 loc) · 1004 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
36
37
38
39
40
41
[core]
excludesfile = /Users/james/.gitignore_global
editor = vim
pager = /usr/local/opt/git/share/git-core/contrib/diff-highlight/diff-highlight | less
[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
[user]
name = James Bowles
email = [email protected]
[push]
default = current
[alias]
fv = fetch -v
graph = log --graph --oneline --all --decorate
ffs = flow feature start
frs = flow release start
frf = flow release finish
[merge]
tool = opendiff
[diff]
compactionHeuristic = true
[rerere]
enabled = true
[color]
ui = always
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
commit = green
meta = yellow
frag = cyan
old = red
new = green
whitespace = red reverse