HTTP/HTTPS
Linux
在Linux环境下使用http/https协议clone/pull GitLab仓库的代码遇到这个问题。以下解决方案也适合GitHub或其他仓库如码云,coding。
解决方案:
-
在home目录下创建
.git-credentials
文件vim .git-credentials
,输入形如https://{username}:{password}@github.com
的配置文本:http://root:1qazroot@192.168.20.149/8090
若有多个,一行一个,:wq
保存退出 -
执行命令:
git config --global credential.helper store
-
执行命令:
cat ~/.gitconfig
,存在如下内容即代表成功:
[credential] helper = store 12
注:使用HTTP/HTTPS协议clone代码时,不需要配置SSH key。
注:所谓的使用HTTP/HTTPS协议,打开.git/config
文件,url协议是http/(s):文章来源:https://www.toymoban.com/news/detail-644984.html
[remote "origin"]
url = http://git.aaa.com/aaa/aaa.git
fetch = +refs/heads/*:refs/remotes/origin/*
参考:
https://blog.csdn.net/lonelymanontheway/article/details/118107326
https://blog.csdn.net/tsq292978891/article/details/89316612文章来源地址https://www.toymoban.com/news/detail-644984.html
到了这里,关于linux配置git账号密码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!