linux下每次git clone不需输入账号密码的方法

linux下每次git clone不需输入账号密码的方法

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

ame@zhenyun~ $touch .git-credentials

ame@zhenyun~ $vim .git-credentials

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

先ESC退出

后:wq保存

比如 https://aoeddklj:1233ds@github.com

2. 在终端下执行

ame@zhenyun~ $git config --global credential.helper store

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

[credential]

helper = store

这个时候输入命令git clone http://username@url 时不需要输入密码,即可完成代码的git



作者:ebayboy
链接:https://www.jianshu.com/p/c5af6afe9480
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

上一篇:python – 如何实现对twisted.pb中备用凭据类型的支持?


下一篇:rabbitMq API