-
Notifications
You must be signed in to change notification settings - Fork 21
/
gitconfig.rrc
76 lines (76 loc) · 1.84 KB
/
gitconfig.rrc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[alias]
addremove = !git add --all && git ls-files --deleted -z | xargs -0 git rm
switch = checkout
unadd = reset --mixed
uncommit = reset --soft
undo = reset --hard
unstage = reset
[user]
name = Sorin Ionescu
email = [email protected]
[color]
ui = auto
[format]
numbered = auto
[core]
legacyheaders = false
excludesfile = ~/.gitignore
whitespace = trailing-space,space-before-tab
quotepath = false
autocrlf = input
safecrlf = true
[apply]
whitespace = warn
[repack]
usedeltabaseoffset = true
[branch]
autosetupmerge = true
[pager]
status = false
[github]
user = "<%= Keychain['github.com/api'].account %>"
token = "<%= Keychain['github.com/api'].password %>"
password = "<%= Keychain['github.com'].password %>"
ssl = true
[tig]
show-date = relative
author-width = 8
show-rev-graph = yes
[advice]
pushNonFastForward = false
statusHints = false
[push]
default = tracking
[rerere]
enabled = true
[diff]
tool = vimdiff
guitool = ksdiff
mnemonicprefix = true
renames = copies
[difftool]
prompt = false
[difftool "ksdiff"]
cmd = ksdiff-wrapper git \"$LOCAL\" \"$REMOTE\"
[merge]
tool = fugitive
[mergetool]
prompt = false
[mergetool "vimdiff3"]
cmd = vim -f -d -c \"wincmd J\" -c \"wincmd =\" \"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
trustExitCode = false
[mergetool "gvimdiff3"]
cmd = gvim -f -d -c \"wincmd J\" -c \"wincmd =\" \"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
trustExitCode = false
[mergetool "fugitive"]
cmd = vim -f -c \"Gdiff\" \"$MERGED\" -c \"wincmd =\"
trustExitCode = false
[mergetool "gfugitive"]
cmd = gvim -f-c \"Gdiff\" \"$MERGED\" -c \"wincmd =\"
trustExitCode = false
[mergetool "splice"]
cmd = vim -f -c \"SpliceInit\" \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"
trustExitCode = true
[mergetool "gsplice"]
cmd = gvim -f -c \"SpliceInit\" \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"
trustExitCode = true