window系统中生成github的公钥文本

原文链接: https://jingyan.baidu.com/article/3aed632ed01dd17010809127.html

转载:https://jingyan.baidu.com/article/3aed632ed01dd17010809127.html

工具/原料

  • window操作系统

  • 已经安装好的git工具

方法/步骤

  1. 首先去安装好git,如果没有安装好可以去官网下载,

    下载地址为:https://git-scm.com/downloads

    window系统中生成github的公钥文本_第1张图片

  2. 安装好后,点击鼠标右键,选中 “Git Bash here

    window系统中生成github的公钥文本_第2张图片

  3. 打开后的如下所示,输入指令cd ~/.ssh/  

    如果提示如果提示 “ No such file or directory" 那么可以采用 命令:

    mkdir ~/.ssh来创建文件夹

    window系统中生成github的公钥文本_第3张图片

  4. 配置全局的name和email,这里是你的github的账号和email

    配置的命令如下:

    git config --global user.name "you Account" 

    git config --global user.email "you [email protected]

  5. 生成SSH公钥

    命令如下:

    ssh-keygen -t rsa -C “you [email protected]"

  6. 查看生成的公钥文件

    命令如下:

    cd ~/.ssh

    ll

    window系统中生成github的公钥文本_第4张图片

  7. 登陆github网站,点击用户头像旁边的下拉三角形。点击setting。

    window系统中生成github的公钥文本_第5张图片

  8. 点击左侧的SSH and GPG keys,然后再点击右上方的new SSH Key

    window系统中生成github的公钥文本_第6张图片

  9. 拷贝id_rsa.pub文件中的所有内容到下图的key区域,粘贴好后点击Add SSH Key

    window系统中生成github的公钥文本_第7张图片

  10. 测试是否添加成功

    输入命令:ssh [email protected]
    确认:yes

  11. 成功后可以看到

    Hi zhang1github2test! You've successfully authenticated, but GitHub does not provide shell access.Connection to github.com closed.

你可能感兴趣的:(Git)