git地址上配置ssh秘钥对
2021-08-13 本文已影响0人
浅浅_2d5a
1、git下载工程 支持ssh 和 https 2种方式
https都能下载
如果不设置ssh,是不能通过ssh进行下载的
2、如何设置ssh
命令行中输入
ssh-keygen -t rsa -C "abc@qq.com"
引号里是邮箱地址,一路回车(可以输入git的相关密码),公钥和私钥就生成了
Your public key has been saved in /c/Users/liuliak/.ssh/id_rsa.pub
用txt打开文件,粘贴到gitlab中的
就可以使用ssh的网址进行下载了
3、gitlab、github等都需要进行ssh秘钥的生成
在生成秘钥的时候,要设置不同的邮箱,更改生成文件路径,再进行config的配置
Enter file in which to save the key (/c/Users/liuliak/.ssh/id_rsa): /c/Users/liuliak/.ssh/id_rsa_two