git本地有配置使用别人账号密码拉取code

Posted 大日很忧伤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git本地有配置使用别人账号密码拉取code相关的知识,希望对你有一定的参考价值。

git clone -b 代码分支 http://账号:密码@ip:port/xx/up_defend.git

git clone   http://xiaohaitun:xiaoshazi@10.1.6.20:8279/code/up_defend.git

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本地有配置使用别人账号密码拉取code的主要内容,如果未能解决你的问题,请参考以下文章

使用webstorm配置GTI,拉取远程代码提交

使用git bash here拉取项目

IDEA本地新建Maven项目+IDEA配置Git和GitHub+代码上传和拉取

git pull总是要输入账号和密码

安装git后如何设置用户信息

记录git 拉取远程分支代码,同步到另一个git上