Git实用配置笔记
正文
$ cat ~/.gitconfig
[user]
name = James
email = fatindeed@hotmail.com
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[core]
excludesFile = ~/.git/.gitignore
hooksPath = ~/.git/hooks
mergeOptions = --no-edit
quotePath = off参考资料
Last updated