-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
50 lines (50 loc) · 927 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
[alias]
co = checkout
br = branch
ci = commit
st = status
delete-merged-branches = "!git co master && git branch --merged | grep -v '\\*' | xargs -n 1 git branch -D"
re = rebase
f = "fetch --all --prune"
pl = pull
p = push
pf = "push -f"
[user]
email = [email protected]
name = Jérôme Pogeant
signingkey = F3FF4145E9ADF771
[gpg]
program = <gpg_binary>
[commit]
gpgsign = true
[submodule]
recurse = true
[color]
ui = true
[core]
editor = nvim -u ~/.config/nvim/init.vim
excludesfile = /home/jerome/.gitignore_global
ignorecase = false
pager = delta
[credential]
helper = store
[push]
autoSetupRemote = true
[pull]
rebase = false
[rerere]
enabled = true
[tag]
forceSignAnnotated = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
line-numbers = true
light = false
[sequence]
editor = interactive-rebase-tool