- 1、credential.helper 凭证存储
默认情况下是根本不缓存。如果你使用的是http,那么每个连接都会提示输入用户名和密码。
针对于非SSH传输,为了方便通常配置credential.helper
为store
。
语法:
git config --global credential.helper 'store --file <path>'
如果不跟<path>,则默认文件为~/.git-credentials
:
如:
// 保存密码,默认路径
git config --global credential.helper store
- 2、core.ignorecase 文件名大小写敏感
默认值为false
,在git-clone
或git-init
会探测并设置core。
// 文件名大小写敏感
git config --global core.ignorecase false