-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
65 lines (52 loc) · 1.28 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
[alias]
ci = commit
co = checkout
ffix = commit --amend --no-edit --all
fix = commit --fixup HEAD
grall = log --graph --oneline --decorate --all
graph = log --graph --oneline --decorate
supdate = !git submodule sync --recursive && git submodule update --init --recursive
upcoming = !git graph ..origin/HEAD
fgc = -c gc.reflogExpire=0 -c gc.reflogExpireUnreachable=0 -c gc.rerereresolved=0 -c gc.rerereunresolved=0 -c gc.pruneExpire=now gc --aggressive
[user]
email = [email protected]
name = Léo Peltier
[diff]
algorithm = histogram
renameLimit = 2048
[core]
excludesfile = ~/.gitignore
pager = less -RFXS -x4
[color]
branch = auto
diff = auto
interactive = auto
log = auto
pager = true
status = auto
[rebase]
autosquash = true
[push]
default = simple
[pull]
ff = only
[advice]
addIgnoredFile = false
commitBeforeMerge = false
detachedHead = false
pushNonFastForward = false
resolveConflict = false
statusHints = false
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckobjects = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[init]
defaultBranch = master