-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
38 lines (38 loc) · 886 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
[user]
name = "Tom Hirashima"
email = ""
[color]
diff = auto
status = auto
branch = auto
interactive = auto
[alias]
ci = commit -a
co = checkout
st = status
up = pull --rebase
amend = commit --amend
export = bundle create /Users/tomhirashima/web.bundle --all
[push]
default = current
[core]
excludesfile = /Users/tomhirashima/.gitignore
editor = joe
[instaweb]
local = true
httpd = lighttpd
port = 4321
[difftool "sourcetree"]
cmd = /Applications/p4merge.app/Contents/MacOS/p4merge \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/p4merge.app/Contents/MacOS/p4merge \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"
trustExitCode = true
[mergetool "p4merge"]
cmd = p4merge "$BASE" "$LOCAL" "$REMOTE" "$MERGED"
keepTemporaries = false
keepBackup = false
[merge]
tool = sourcetree
[url "[email protected]:"]
insteadOf = https://github.com/