forked from jinxv1987/profile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
21 lines (21 loc) · 834 Bytes
/
.gitconfig
File metadata and controls
21 lines (21 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[alias]
st = status
co = checkout
last = log -1 HEAD
history = log --pretty=format:\"%h - %an, %ar : %s\"
hist = log --pretty=format:\"%h %s\" --graph
lr = log --pretty=raw
l = log --date-order --date=iso --graph --full-history --all --pretty=format:'%x08%x09%C(red)%h %C(cyan)%ad%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08%x08 %C(bold blue)%aN%C(reset)%C(bold yellow)%d %C(reset)%s'
lh = log --date-order --date=iso --graph --full-history --all --pretty=format:'%x08%x09%C(red)%h %C(cyan)%ad%x08%x08%x08%x08%x08%x08 %C(bold blue)%aN%C(reset)%C(bold yellow)%d %C(reset)%s'
lt = log --oneline --decorate
[color]
ui = true
[core]
autocrlf = true
quotepath = false
safecrlf = true
[gui]
encoding = utf-8
[i18n]
commitEncoding = utf-8
logOutputEncoding = utf-8