-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
104 lines (104 loc) · 2.46 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[user]
name = Joe Stringer
email = [email protected]
[core]
editor = vim
abbrev = 12
[pretty]
fixes = "CC: %an <%ae>%nFixes: %h (\"%s\")"
linux-fmt = %h (\"%s\")
[color]
diff = auto
ui = true
[alias]
praise = blame
ap = add -p
bl = branch -l
blae = blame
ci = commit
cm = commit -m
cms = commit -s -m
cf = commit --fixup
cs = commit --squash
co = checkout
cb = checkout --no-track -b
di = diff
dc = diff --cached
cd = diff --cached
gerp = grep
pf = push --force-with-lease
sb = status -sb
su = status -uno
st = stash
sp = stash pop
si = stash --keep-index
cp = cherry-pick
lo = log --oneline
a3 = am -3
fp = format-patch
ff = merge --ff-only
ra = rebase -i --autosquash
rc = rebase --continue
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
ls = diff-tree --no-commit-id --name-only -r
update-submodule = submodule update --remote
sr = show --reverse
lr = log --reverse --stat
rv = remote --verbose
exclude = !sh -c 'echo "$1" >> .git/info/exclude' -
hsow = show
tokern = am -p2 --directory=net/openvswitch --reject
fromkern = am -p3 --directory=datapath/ --reject
compat = am --directory='datapath/linux/compat/'
mt = merge -s recursive -X theirs
tc = tag --contains
list-authors = shortlog -s -n
flog = log --pretty=fuller --stat
rbanch = branch
safe-clean = clean -df --interactive
common = merge-base
ftech = fetch
[push]
default = current
[rebase]
updateRefs = true
[sendemail]
suppresscc = self
chainreplyto = false
smtpserver = smtp.gmail.com
smtpserverport = 587
smtpencryption = tls
confirm = always
[fetch]
recurseSubmodules = false
[pw]
server = https://patchwork.ozlabs.org/
[pager]
branch = false
[diff]
renamelimit = 1949
colorMoved = default
[credential]
helper = store
[gpg]
format = ssh
[tag]
gpgsign = true
[interactive]
diffFilter = git-delta-snap.delta --color-only --features=interactive
[git-delta-snap.delta]
navigate = true
#side-by-side = true
features = decorations
hyperlinks = true
keep-plus-minus-markers = true
[git-delta-snap.delta "interactive"]
keep-plus-minus-markers = false
[git-delta-snap.delta "decorations"]
commit-style = raw
[merge]
conflictstyle = diff3
[credential "https://github.com"]
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper = !/usr/bin/gh auth git-credential