-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
46 lines (46 loc) · 1.14 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
[user]
name = Eric Cohen
email = [email protected]
[core]
editor = vim
excludesfile = ~/.gitignore_global
pager = `~/.git-pager`/diff-highlight | less
[alias]
r = rebase --interactive --autosquash
sh = stash
co = checkout
fa = fetch --all
lg = log --graph --oneline --decorate --topo-order --all
[diff]
tool = Kaleidoscope
[difftool]
prompt = false
[branch]
autosetuprebase = always
mergeoptions = --no-ff
[rebase]
autostash = true
[merge]
ff = false
tool = Kaleidoscope
[mergetool]
prompt = false
[color]
ui = true
[log]
decorate = short
[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
[difftool "Kaleidoscope"]
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustExitCode = true
[push]
default = simple
[credential]
helper = osxkeychain