-
Notifications
You must be signed in to change notification settings - Fork 8
/
.gitconfig
68 lines (54 loc) · 1.21 KB
/
.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 = Ignasi Barrera
email = nacx@apache.org
signingkey = D959B94F
[includeIf "hasconfig:remote.*.url:*tetrate*/**"]
path = .gitconfig-tetrate
[includeIf "hasconfig:remote.*.url:*istio*/**"]
path = .gitconfig-tetrate
[core]
editor = vim
autocrlf = input
excludesfile = /Users/nacx/.gitignore
[color]
status = auto
interactive = auto
diff = auto
branch = auto
ui = auto
[alias]
st = status
ci = commit
cs = commit -S -s
ms = merge -S
cp = cherry-pick
cps = cherry-pick -S
rs = rebase -S
co = checkout
pl = pull
ps = push
pr = pull --rebase
br = branch
lg = log --graph
lgs = log --graph --show-signature
[gpg]
program = gpg
[apply]
whitespace = nowarn
[format]
pretty=format:%C(yellow)%h%Creset -%C(red)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset
[url "git@github.com:"]
insteadOf = https://github.com/
[protocol]
version = 2
[commit]
gpgSign = true
[pull]
rebase = false
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[url "ssh://git@github.com/"]
insteadOf = https://github.com/