gitlab默认提供HTTP/SSH两种请求方式下载代码
测试用的gitlab账号 账号:abc 密码:123456
1.生成秘钥,一路回车即可
cd ~
ssh-keygen -t rsa -C "abc"
2.在当前家目录下,新建文件,用于存储git配置,邮箱没有就随意填写
vim .gitconfig
[user]
name = abc
email = abc@163.com
[credential]
helper = store
[http]
sslVerify = false
3.新建git的XXX文件
vim .git-credentials
https://{username}:{password}@github.com
4.输入命令
git config --global credential.helper store
5.复制秘钥内容
cat ~/.ssh/id_rsa.pub
6.在gitlab上登录自己账号,此账号一定要与2.2账号一样,选中settings
7.粘贴到SSH Keys的框中
8.如图表述gitlab已经添加好你本地密钥
9.测试拉取,是否还需要账号密码
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。