美文网首页
git地址上配置ssh秘钥对

git地址上配置ssh秘钥对

作者: 浅浅_2d5a | 来源:发表于2021-08-13 11:06 被阅读0次

    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中的

    image.png
    就可以使用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

    相关文章

      网友评论

          本文标题:git地址上配置ssh秘钥对

          本文链接:https://www.haomeiwen.com/subject/eerdbltx.html