GitLab--不支持ssh时通过http实现免密
Posted 番茄红了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitLab--不支持ssh时通过http实现免密相关的知识,希望对你有一定的参考价值。
gitlab--不支持ssh时通过http实现免密
克隆
- gitlab上使用http拉取
- 输入gitlab的用户名和密码
配置config
- 打开我们从gitlab上克隆下的包–打开.git包
- 进入git文件,找到config
- 修改
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url =http://gitlab用户名:gitlab密码@git地址
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]s
remote = origin
merge = refs/heads/master
[branch "dev"]
remote = origin
merge = refs/heads/dev
gitlab密码后面添加@。@的作用是分割用户名:密码和git地址。
• 完成上述操作,http也可省去次次操作输入密码。
备注
git是隐藏文件。如果看不到该文件请照下图操作:
以上是关于GitLab--不支持ssh时通过http实现免密的主要内容,如果未能解决你的问题,请参考以下文章