-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
37 lines (37 loc) · 967 Bytes
/
.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
[user]
name = Murat Acet
email = murateca@gmail.com
[core]
editor = vim
[alias]
aa = add --all
ai = add --interactive
ap = add --patch
au = add --update
bm = branch --merged
bnm = branch --no-merged
bv = branch -vv
br = branch -ra
bd = branch -d
ci = commit --interactive
cm = commit --message
ca = commit --amend
cam = commit --amend --message
co = checkout
cb = checkout -b
cp = checkout --patch
mm = merge --no-ff
st = status --short --branch
cp = cherry-pick
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate --numstat
lg = log --pretty=format:"%C(yellow)%h\\ %C(green)%ad%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate --date=short --graph
lr = log --pretty=format:"%C(green)%h\\ %C(yellow)[%ad]%Cred%d\\ %Creset%s%Cgreen\\ [%cn]" --decorate --date=relative
un = reset HEAD
[color]
ui = auto
diff = auto
status = auto
branch = auto
[branch]
autosetupmerge = always
autosetuprebase = always