-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
39 lines (39 loc) · 928 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
[user]
email ='[email protected]'
name =WayneHu
[push]
default = simple
[alias]
st = status
cm = commit
cma = commit --amend
br = branch -avv
ck = checkout
ckb = checkout -b
rb = rebase
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[merge]
tool = vimdiff
conflictstyle = diff3
[mergetool]
prompt = false
[color "diff"]
meta = blue black bold
[core]
editor = /usr/local/bin/vim
excludesfile = /Users/waynehu/.gitignore_global
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
[color]
ui = auto
[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