-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
50 lines (50 loc) · 1.04 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
[user]
name = syguer
email = [email protected]
[push]
default = current
[core]
editor = vim
excludesfile = ~/dotfiles/.gitignore
[color]
ui = true
[alias]
st = status
aa = add .
co = checkout
cob = checkout -b
gr = log --graph --date = short --decorate = short --pretty = format:'%Cgreen%h %Creset%cd %Cblue%cn %Cred%d %Creset%s'
ct = commit
ctm = commit -m
cta = commit --amend
rb = rebase
br = branch
bra = branch -a
cpk = cherry-pick
po = push origin
di = diff
rhH = reset --hard HEAD
rh = reset --hard
fe = fetch
feu = fetch upstream
pu = pull
mud = merge upstream/develop
mur = merge upstream/release
pud = pull --rebase upstream develop
pur = pull --rebase upstream release
rmv = remote -v
pud = pull upstream develop
cl = clone
ss = stash
sp = stash pop
sl = stash list
wt = worktree
wta = worktree add
nb = new-branch
[pager]
log = diff-highlight | less
show = diff-highlight | less
diff = diff-highlight | less
[diff]
algorithm = histogram
tool = vimdiff