git config 配置项
core.autocrlf
是否自动将 LF 转换为 CRLF,当 git 提示 warning: LF will be replaced by CRLF
时,可以将该选项设为 false
关闭提示。
git config core.autocrlf false
core.filemode
是否忽略文件权限
# 忽略文件全向
git config core.filemode false
credential.helper
认证助手,当我们使用 HTTPS 方式 clone 项目时,每次 pull、push 都会提示输入密码,为了不每次都输入密码,就需要配置 credential.helper
选项。
# cache 将凭据存储在内存中
git config credential.helper cache
# store 将凭据保存在磁盘上
git config credential.helper store
操作步骤如下:
在家目录创建并编辑 .git-credentials 文件
cd ~
touch .git-credentials
vim .git-credentials
把如下内容写入 .git-credentials 文件中,保存并退出
# {username} 你的 git 账户名
# {password} 你的 git 密码
# example.com 你的 git 仓库域名
# 例子:https://hcysunyang:12345678@github.com
https://{username}:{password}@example.com
设置凭据存储方式
git config credential.helper store
user.name
配置 git 用户名
user.email
配置用户邮箱
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: git merge 使用及技巧
下一篇: WAF Bypass 介绍分析
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论