git http拉取代码免账号密码
Posted 苍山落暮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git http拉取代码免账号密码相关的知识,希望对你有一定的参考价值。
git http拉取代码免账号密码
方法一:
通过生成credential配置
git config --global credential.helper store
查看.gitconfig文件,发现多了一行
[credential]
helper = store
方法二
修改仓库中.git/config文件
url = http://账号:密码@git.test.com.cn/root/xx.git
或者带着账号密码去克隆代码
git clone http://账号:密码@git.test.com.cn/root/xx.git
方法三
直接修改.gitconfig配置文件,加入password = xxx
window目录: C:\\Users\\Administrator/.gitconfig
linux目录: ~/.gitconfig
[user]
name = xxx
email = xxx@xx.com
password = xxx
其他说明
关闭https证书,去掉ssl认证
git config --global http.sslVerify false
以上是关于git http拉取代码免账号密码的主要内容,如果未能解决你的问题,请参考以下文章