Git安装

作者: 沧海一粟_czs | 来源:发表于2018-12-22 01:32 被阅读0次

    下载地址

    https://gitforwindows.org/

    身份验证

    git config --global user.name "your name"
    git config --global user.email "your email"

    生成秘钥SSH

    查看秘钥是否存在
    cat ~/.ssh/id_rsa.pub
    (window下 查看C:\Users\你的用户.ssh目录是否存在)
    不存在则直生成
    ssh-keygen -t rsa -C "your email"
    默认回车直至结束

    [转载自]:https://blog.csdn.net/dark00800/article/details/54571859

    相关文章

      网友评论

          本文标题:Git安装

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