-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
81 lines (70 loc) · 1.35 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
[user]
name = songji.zeng
email = [email protected]
[alias]
a = add
aa = add --all
b = branch
ba = branch - a
bd = branch -d
bD = branch -D
bl = blame -bw
br = branch
bu = branch -u
c = commit -v
ca = commit -v -a
cb = checkout -b
ci = commit
cl = clone --recursive
cm = commit -v -m
co = checkout
cp = cherry-pick
cpa = cherry-pick --abort
cpc = cherry-pick --continue
d = diff
dt = diff-tree --no-commit-id --name-only -r
dw = diff --word-diff
f = fetch
fa = fetch --all --prune
fo = fetch origin
i = init
l = pull
m = merge
mom = merge origin/master
p = push
po = push origin
ra = remote add
rb = rebase
rba = rebase --abort
rbc = rebase --continue
rbs = rebase --skip
rh = reset HEAD
rhh = reset HEAD --hard
s = status
sb = status -sb
stc = stash clear
std = statsh drop
stl = statsh list
stp = statsh pop
sts = statsh save
si = submodule init
su = submodule update
t = tag
ts = tag -s
recent = branch --sort=committerdate --format=\"%(committerdate:relative)%09%(refname:short)\"
st = status
[core]
excludesFile = ~/.gitignore
attributesFile = ~/.gitattributes
[github]
user = songjiz
[commit]
gpgsign = false
[gpg]
program = /usr/local/bin/gpg
[http]
proxy = http://127.0.0.1:6152
[https]
proxy = http://127.0.0.1:6152
[init]
defaultBranch = main