-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
41 lines (34 loc) · 746 Bytes
/
gitconfig
File metadata and controls
41 lines (34 loc) · 746 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
38
39
40
41
[user]
name = kevin
email = kevin.wang2004@hotmail.com
[merge]
tool = vimdiff
[diff]
tool = vimdiff
[difftool]
tool = vimdiff
prompt = No
[color]
status = auto
branch = auto
ui = true
[alias]
co = commit
ck = checkout
st = status
br = branch
bc = branch --edit-description
df = difftool
lg = log --graph --stat --oneline --decorate --parents --format=fuller --date=local
cb = log --pretty='%aN'|sort|uniq -c |sort -k1 -n -r|head -n 5
gl = log --stat --oneline --decorate --parents --format=fuller --date=local --reverse
[push]
default = current
[core]
editor = vim
[pull]
rebase = true
[http]
proxy = socks5://127.0.0.1:1080
[https]
proxy = socks5://127.0.0.1:1080