-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
52 lines (52 loc) · 1.29 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
[core]
sparsecheckout = true
pager =
hooksPath = ~/.config/git/hooks
[user]
name = Koki Takahashi
email = hakatasiloving@gmail.com
[color]
ui = always
[push]
default = upstream
followTags = true
[alias]
d = diff --color-words --word-diff-regex='[^\\x80-\\xbf][\\x80-\\xbf]*' --ignore-space-change
dc = diff --color-words --word-diff-regex='[^\\x80-\\xbf][\\x80-\\xbf]*' --ignore-space-change --cached
wdiff = diff --word-diff --ignore-space-change
cdiff = diff --cached --ignore-space-change
s = status --short --branch --untracked-files=all
statu = status
stats = status
staut = status
staus = status
statsu = status
stauts = status
stastu = status
stastus = status
c = checkout
chekcout = checkout
comit = commit
commti = commit
clone = clone --recursive --recurse-submodules -j8
shoe = show
pull = pull --recurse-submodules
unstage = restore --staged
history = log -p
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[url "git@github.com:"]
pushInsteadOf = git://github.com/
pushInsteadOf = /~https://github.com/
[url "git@gist.github.com:"]
pushInsteadOf = git://gist.github.com/
pushInsteadOf = https://gist.github.com/
[credential]
helper = wincred
[safe]
directory = *
[init]
defaultBranch = main