-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitconfig
44 lines (44 loc) · 828 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
44
[alias]
st = status
di = diff
co = checkout
ci = commit
br = branch
sta = stash
llog = log --date=local
ctags = !.git/hooks/ctags
[apply]
whitespace = nowarn
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = auto
[branch]
autosetupmerge = true
[push]
default = matching
[user]
name = Luke Wertz
email = [email protected]
[mergetool "fugitive"]
cmd = vim -f -c \"Gdiff\" \"$MERGED\"
[mergetool]
tool = fugitive
[merge]
tool = fugitive
[url "[email protected]:"]
insteadOf = "gh:"
pushInsteadOf = "github:"
pushInsteadOf = "git://github.com/"
[url "git://github.com/"]
insteadOf = "github:"
[url "[email protected]:"]
insteadOf = "gst:"
pushInsteadOf = "gist:"
pushInsteadOf = "git://gist.github.com/"
[url "git://gist.github.com/"]
insteadOf = "gist:"
[github]
user = lukewertz