-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
43 lines (42 loc) · 1015 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
[user]
name = Alex Soto
email = [email protected]
[color]
status = auto
diff = auto
branch = auto
[merge]
tool = opendiff
[alias]
b = branch -v
br = branch -r -v
ci = commit
co = checkout
cp = cherry-pick
d = diff
dc = diff --cached
ignored = ls-files --exclude-standard --ignored --others
spull = !git-svn fetch && git-svn rebase
spush = !git-svn dcommit
st = status
ll = log --pretty=format:'%Cblue%h%d%Creset %ar %Cgreen%an%Creset %s' --graph
[core]
excludesfile = /Users/asoto/.gitignore_global
quotepath = false
autocrlf = input
safecrlf = true
[log]
decorate
# by default always rebase the master branch when pulling
[branch "master"]
rebase = true
[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
[push]
default = simple
[github]
user = apsoto