-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
135 lines (116 loc) · 2.45 KB
/
gitconfig
File metadata and controls
135 lines (116 loc) · 2.45 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[alias]
a = "add"
aa = "add --all"
ai = "add --interactive"
ap = "add --patch"
b = "branch"
c = "commit"
ca = "commit --amend"
cae = "commit --amend --no-edit"
can = "commit --amend --no-verify"
caen = "commit --amend --no-edit --no-verify"
cm = "commit -m"
cn = "commit --no-verify"
cnm = "commit --no-verify -m"
d = "diff"
e = "clean"
ef = "clean --force"
efd = "clean --force -d"
efdx = "clean --force -d -x"
f = "fetch"
g = "log"
go = "log --oneline"
gog = "log --oneline --graph --all"
h = "stash"
ha = "stash apply"
hc = "stash clear"
hd = "stash drop"
hl = "stash list"
hp = "stash pop"
hw = "stash show"
i = "switch"
ic = "switch --create"
iC = "switch --force-create"
id = "switch --detach"
ig = "switch --guess"
k = "cherry-pick"
ka = "cherry-pick --abort"
kc = "cherry-pick --continue"
ks = "cherry-pick --skip"
l = "pull"
lr = "pull --rebase"
m = "merge"
ma = "merge --abort"
mt = "mergetool"
n = "rebase"
na = "rebase --abort"
nc = "rebase --continue"
ni = "rebase --interactive"
ns = "rebase --skip"
o = "restore"
p = "push"
pf = "push --force-with-lease"
pff = "push --force"
pb = "!f() { git push -u origin $(git branch --show-current); }; f"
r = "reset"
rh = "reset --hard"
rs = "reset --soft"
s = "status"
suno = "status -uno"
u = "submodule"
ua = "submodule add"
ud = "submodule deinit"
ui = "submodule init"
uu = "submodule update --recursive"
uui = "submodule update --init --recursive"
us = "submodule status --recursive"
uy = "submodule sync --recursive"
w = "show"
rev = "revise"
ign = "!f() { curl -L -s https://www.gitignore.io/api/$@; }; f"
fastps1 = "!f() { git config bash.showDirtyState false; git config bash.showUntrackedFiles false; }; f"
[push]
default = current
autoSetupRemote = true
[log]
decorate = short
[merge]
conflictstyle = zdiff3
[core]
editor = kak
pager = delta
excludesfile = ~/.gitignore
[color]
ui = auto
interactive = auto
[interactive]
singleKey = true
diffFilter = delta --color-only
[diff]
algorithm = histogram
submodule = log
[pull]
rebase = true
[rerere]
enabled = true
[init]
defaultBranch = main
[rebase]
autosquash = true
autostash = true
[url "git@github.com:"]
insteadOf = https://github.com/
[commit]
gpgsign = true
verbose = true
[status]
submoduleSummary = true
[help]
autocorrect = prompt
[delta]
navigate = true
[user]
email = 6233736+yveoch@users.noreply.github.com
name = Yves Lefloch
[include]
path = ~/.gitconfig_local