git config 配置项

发布于 2024-12-09 12:02:37 字数 1153 浏览 13 评论 0

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

执笏见

暂无简介

文章
评论
25 人气
更多

推荐作者

迎风吟唱

文章 0 评论 0

qq_hXErI

文章 0 评论 0

茶底世界

文章 0 评论 0

捎一片雪花

文章 0 评论 0

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文