-
Notifications
You must be signed in to change notification settings - Fork 8
/
.gitconfig
42 lines (42 loc) · 930 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
[user]
email = lighttiger2505@gmail.com
name = lighttiger2505
[ghq]
root = ~/dev/src
[core]
excludesfile = ~/.gitignore_global
[merge]
tool = vimdiff
ff = false
[diff]
tool = vimdiff
[difftool "vimdiff"]
cmd = "nvim -R -d -c \"wincmd l\" -d \"$LOCAL\" \"$REMOTE\""
[mergetool "vimdiff"]
cmd = "nvim -d -c \"4wincmd w | wincmd J\" \"$LOCAL\" \"$BASE\" \"$REMOTE\" \"$MERGED\""
[difftool]
prompt = true
[mergetool]
prompt = true
[pull]
ff = only
rebase = true
ff = only
[branch "master"]
rebase = true
[branch "develop"]
rebase = true
[includeIf "gitdir:~/dev/src/github.com/"]
path = ~/.gitconfig-private
[includeIf "gitdir:~/dev/src/github.dena.jp/"]
path = ~/.gitconfig-work
[commit]
template = ~/.gitmessage.txt
[credential]
helper = osxkeychain
[url "ssh://git@github.com/MobilityTechnologies/"]
insteadOf = https://github.com/MobilityTechnologies/
[push]
autoSetupRemote = true
[rerere]
enabled = true