-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
44 lines (40 loc) · 992 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
42
43
44
[user]
name = Ryan Souza
email = [email protected]
[core]
excludesfile = /Users/scoz/.gitignore_global
autocrlf = input
quotepath = false
mergeoptions = --no-commit
[diff]
tool = Kaleidoscope
[difftool "Kaleidoscope"]
cmd = ksdiff-wrapper git \"$LOCAL\" \"$REMOTE\"
[merge]
tool = diffmerge
conflictstyle = diff3
[alias]
update = fetch --all
pull-ff = pull --ff-only @{u}
ff = merge --ff-only @{u}
ff-rebase = rebase -p @{u}
bmerge = merge --no-ff
push-first = push -u
st = status -sb
co = checkout
cp = cherry-pick
branch-timestamps = for-each-ref --sort='authordate' --format='%(refname:short) : %(authordate)' refs/heads
[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
[github]
user = scoz
[color]
ui = true
[difftool]
prompt = false
[push]
default = simple