-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
44 lines (44 loc) · 728 Bytes
/
.gitconfig
File metadata and controls
44 lines (44 loc) · 728 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
42
43
44
[user]
name = Daichi TOMA
email = amothic@gmail.com
[core]
autocrlf = input
safecrlf = warn
editor = vim
excludesfile = ~/.gitignore.global
[alias]
co = checkout
[merge]
tool = vimdiff
[color]
ui = auto
[push]
default = simple
autoSetupRemote = true
followTags = true
[include]
path = ~/.gitconfig.local
[commit]
gpgsign = true
[init]
defaultBranch = main
[branch]
sort = -committerdate
[tag]
sort = version:refname
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[fetch]
prune = true
pruneTags = true
all = true
[rebase]
updateRefs = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true