-
Notifications
You must be signed in to change notification settings - Fork 3
/
gitconfig
41 lines (41 loc) · 977 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
[alias]
co = checkout
lg = log --graph --pretty=format:\"%Cgreen%h %Cred%s %Creset----%C(yellow)%an %Creset@ %ad %C(green)%d\" --date=format:\"%Y-%m-%d %H:%M\"
mt = mergetool
rb = "rebase --continue"
[branch "master"]
remote = origin
merge = refs/heads/master
[core]
bigFileThreshold = 1M
excludesfile = ~/.gitignore_global
quotepath = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[merge]
tool = vimdiff
[pack]
windowMemory = 1g
[user]
email = [email protected]
name = Xiang Wang
[pull]
rebase = true
default = current
[push]
default = current
[safe]
directory = /run/media/wangx/samsung/github/coin
directory = /run/media/wangx/samsung/github/
[url "[email protected]:"]
insteadOf = https://github.com/
[diff]
toll = vimdiff
wordRegex = "[^[:space:],;=]+"
[checkout]
workers = 15
[color]
status = always