linux git 保存用户名和密码

一、通过文件方式

1.在~/下, touch创建文件 .git-credentials, 用vim编辑此文件,输入内容格式:

touch .git-credentials
vim .git-credentials

在里面按“i”然后输入: https://{username}:{password}@github.com

比如 https://account:password@github.com

2. 在终端下执行

git config --global credential.helper store

3. 可以看到~/.gitconfig文件,会多了一项:

[credential]
helper = store

4.OK

二、通过缓存方式

要求:git版本需要>=1.7.10

git config --global credential.helper cache
# 默认缓存密码15分钟,可以改得更长, 比如1小时
git config --global credential.helper 'cache --timeout=3600'

git pull http://test@git.test.cn:8080/zhima/test.git master

转https://www.cnblogs.com/boystar/p/5644025.html

上一篇:PHP字符串函数之 strpos stripos strrpos strripos


下一篇:〖Linux〗Kubuntu 14.04的Eclipse 崩溃解决方法总结