-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
68 lines (49 loc) · 862 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[user]
name = Hadrien Patte
[commit]
gpgSign = true
[tag]
forceSignAnnotated = true
[fetch]
prune = true
[pull]
ff = only
[push]
default = current
autoSetupRemote = true
gpgSign = if-asked
[alias]
a = add
c = commit
s = status
ck = checkout
f = fetch
[color.grep]
filename = magenta
linenumber = green
[gpg]
program = gpg
[url "ssh://[email protected]/"]
insteadOf = https://github.com/
[core]
pager = delta
hooksPath = ~/.dotfiles/git-hooks
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
[rerere]
enabled = true
autoUpdate = true
[rebase]
updateRefs = true
[merge]
updateRefs = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[includeIf "gitdir:/Users/"]
path = ~/.gitconfig-mac
[includeIf "gitdir:/home/"]
path = ~/.gitconfig-linux