-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
40 lines (40 loc) · 959 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
[core]
editor = nvim
autocrlf = input
safecrlf = true
[pull]
rebase = false
[push]
default = simple
[user]
name = Benoît Barberousse
email = [email protected]
[stash]
showPatch = true
[filter "lfs"]
smudge = git-lfs smudge -- %f
required = true
clean = git-lfs clean -- %f
process = git-lfs filter-process
[status]
showUntrackedFiles = all
[stash]
showPatch = true
[alias]
a = add --patch
b = branch
c = commit
ch = checkout
d = diff
fnd = grep --line-number --break --heading
l = log --oneline --decorate
la = log --oneline --decorate --all
m = merge
p = push
r = remote -v
st = status --branch --short
sv = stash save -u
svs = stash list
opn = stash apply
[init]
defaultBranch = master