美文网首页
Git创建ssh-key

Git创建ssh-key

作者: zhangdong0921 | 来源:发表于2017-04-01 11:49 被阅读0次

    //跳转到.ssj目录下

    cd ~/.ssh/

    //创建

    mkdir ~/.ssh

    //git配置用户名

    git config --global user.name "zhangdong"

    //git配置用户邮箱

    git config --global user.email "zhangdong0921@139.com"

    //生成ssh-key (-t 是类型 -C 是备注,生成以备注结尾的ssh key)

    ssh-keygen -t rsa -C "zhangdong0921@139.com"

    相关文章

      网友评论

          本文标题:Git创建ssh-key

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