-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitconfig
41 lines (41 loc) · 842 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
38
39
40
41
[user]
name = \"tracyone\"
email = \"[email protected]\"
[credential]
helper = cache --timeout=86400
[core]
editor = vim
[diff]
tool = vimdiff
[merge]
tool = vimdiff
conflictstyle = diff3
[difftool]
prompt = 0
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[alias]
st = status
co = checkout
ci = commit --signoff
commit = commit --signoff
br = branch
sb = branch -a
mt = mergetool
d = difftool
dst = diff --staged
sub = submodule
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
c1 = clone --depth=1
[mergetool]
prompt = false
[web]
browser = open
[http]
proxy = http://127.0.0.1:31181
sslVerify = false
[https]
proxy = http://127.0.0.1:31181