冲锅煮酒 · 2019年09月01日

Windows GIT SSH 免密教程

Windows GIT SSH 免密教程

  1. 安装git客户端,最新下载地址如下 https://github.com/git-for-wi...
  2. 安装完毕后, 进入.ssh目录,笔者目录如下:

C:\Users\Administrator.ssh,进入后,右键

git bash here
  1. 新建ssh key

    ssh-keygen -t rsa -==C== "chonguo@126.com"
    键入 id_rsa_gitee
    按enter键直到结束,这时会发现生成两个私钥和公钥
  2. 将私钥加入到ssh agent

    ssh-add ~/.ssh/id_rsa_gitee

    如果出现 ==Could not open a connection to your authentication agent.==
    则需要

    ssh-agent bash
    ssh-add ~/.ssh/id_rsa_gitee
  3. 在该目录下新建config文件
   
     #该配置用于个人gitee 上  
    #Host 服务器别名  
    Host gitee.com
    #HostName 服务器ip地址或机器名  
    HostName gitee.com
    #User连接服务器的用户名  
    User chonguo@126.com
    #IdentityFile 密匙文件的具体路径  
    IdentityFile C:\Users\Administrator\.ssh\id_rsa_oschina
    
    #该配置用于个人 github 上  
    #Host 服务器别名  
    Host github.com
    #HostName 服务器ip地址或机器名  
    HostName github.com
    #User连接服务器的用户名  
    User chonguo@126.com
    #IdentityFile 密匙文件的具体路径  
    IdentityFile C:\Users\Administrator\.ssh\id_rsa_github

    #该配置用于aliyun code 上  
    #Host 服务器别名  
    Host code.aliyun.com
    RSAAuthentication yes
    #HostName 服务器ip地址或机器名  
    HostName code.aliyun.com
    #User连接服务器的用户名  
    User chonguo@163.com
    #IdentityFile 密匙文件的具体路径  
    IdentityFile C:\Users\Administrator\.ssh\id_rsa_aliyun
  1. 登录gitee或者github配置ssh keys,用notepad打开并复制id_rsa_gitee.pub中内容即可
推荐阅读
关注数
0
文章数
11
一个爱好全栈、架构保持热情的开发大锅
目录
极术微信服务号
关注极术微信号
实时接收点赞提醒和评论通知
安谋科技学堂公众号
关注安谋科技学堂
实时获取安谋科技及 Arm 教学资源
安谋科技招聘公众号
关注安谋科技招聘
实时获取安谋科技中国职位信息