美文网首页
git 初始配置公钥私钥备忘

git 初始配置公钥私钥备忘

作者: QiyihaoLabs | 来源:发表于2018-08-19 20:45 被阅读0次

    1. 配置用户名

    git config --global user.name "用户名"

    2. 配置邮箱

     git config --global user.email "邮箱地址"

    3.检查配置

    git config -l

    4. 生成公私钥对

    ssh-keygen -t rsa -C "邮箱地址" -f "文件地址"

    5.把专用密钥添加到 ssh-agent 的高速缓存中

    ssh-add ~/.ssh/id_dsa

    6.如果执行ssh-add 时出现Could not open a connection to your authentication agent,执行如下命令

    ssh-agent bash

    7. clone or init

    git clone "地址"

    git init

    相关文章

      网友评论

          本文标题:git 初始配置公钥私钥备忘

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