-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
86 lines (70 loc) · 1.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[user]
name = Paulo Koch
email = [email protected]
signingKey = F6B4B93498A0C85D
[includeIf "gitdir:~/github.com/lifeonmarspt/"]
path = .gitconfig-lom
[includeIf "gitdir:~/github.com/trustfractal/"]
path = .gitconfig-fractal
[includeIf "gitdir:~/github.com/idos-network/"]
path = .gitconfig-idos
[core]
editor = vim
whitespace = trailing-space,space-before-tab,tab-in-indent
[alias]
glb = log --graph --decorate --pretty=oneline --abbrev-commit
gl = log --graph --decorate --pretty=oneline --abbrev-commit --all
gla = log --graph --decorate --pretty=oneline --abbrev-commit --all --reflog
b = branch
d = diff
dc = diff --cached
s = status -sb
st = status -s
ci = commit
cian = commit --amend --no-edit
co = checkout
ff = merge --ff-only
mnff = merge --no-ff
mff = merge --ff-only
mnffn = merge --no-ff --no-edit
pr = pull --rebase
pra = pull --rebase --autostash
pff = pull --ff-only
pffa = pull --ff-only --autostash
pfl = push --force-with-lease
fap = fetch --all --tags --prune
fp = fetch --prune
lsf = ls-files --exclude-standard -o -c
[color]
ui = auto
[color "branch"]
current = green reverse
local = green
remote = red
[push]
default = current
autoSetupRemote = true
[merge]
conflictStyle = diff3
stat = False
[rebase]
autosquash = true
[grep]
linenumber = true
[branch]
autosetuprebase = always
[pull]
rebase = false
[init]
defaultBranch = master
[submodule]
recurse = true
[rerere]
enabled = true
[commit]
gpgSign = true
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process