Linux 下 Git 免登录不需重复输入账号和密码
# 方法一
在 ~/
下,touch
创建文件 .git-credentials
:
touch .git-credentials
1
用vim编辑此文件:
vim .git-credentials
1
输入内容格式 https://username:password@github.com
在终端下执行:
git config --global credential.helper store
1
如果想自己设置缓存时间,可以这样做
git config credential.helper 'cache –timeout=3600'
1
这样就设置一个小时之后失效,可以看到 ~/.gitconfig
文件,会多了一项:
[credential]
helper = store
1
2
2
# 方法二(推荐)
# 全局设置
git config --global credential.helper store
1
# 局部设置
git config credential.helper store
1
上次更新: 2024/01/30, 00:35:17
- 01
- Node与GLIBC_2.27不兼容解决方案08-19
- 02
- Git清空本地文件跟踪缓存08-13