-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
40 lines (40 loc) · 948 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
# This is Git's per-user configuration file.
[core]
user = Daniel Dafoe
email = dannydafoe@gmail.com
[push]
default = simple
[user]
name = Daniel Dafoe
email = dannydafoe@gmail.com
[core]
excludesfile = /Users/danieldafoe/.gitignore_global
[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
[alias]
b = branch
c = checkout
s = status
f = fetch
abort = merge --abort
ffs = flow feature start
fff = flow feature finish
frs = flow release start
frf = flow release finish
fhs = flow hotfix start
fhf = flow hotfix finish
co = commit
ch = checkout
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential]
helper = osxkeychain
[http]
sslVerify = false