-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitconfig
More file actions
37 lines (37 loc) · 768 Bytes
/
.gitconfig
File metadata and controls
37 lines (37 loc) · 768 Bytes
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
[user]
name = Ng Zhi An
email = ngzhian@gmail.com
[color]
ui = true
[core]
excludesfile = ~/.gitignore
[alias]
st = status
ci = commit --verbose
cm = commit -m
co = checkout
cob = checkout -b
di = diff
dc = diff --cached
amend = commit --amend
aa = add --all
ap = add -p
ff = merge --ff-only
pullff = pull --ff-only
noff = merge --no-ff
fa = fetch --all
pom = push origin master
poh = push origin HEAD
b = branch
ds = diff --stat=160,120
dh1 = diff HEAD~1
pop = stash pop
list = stash list
rdev = rebase develop
rb = rebase --autosquash --autostash -i
fu = commit --fixup=HEAD
[merge]
tool = vimdiff
[rebase]
autoSquash = true
autoStash = true