配置Git多账号使用ssh

37次阅读

共计 470 个字符,预计需要花费 2 分钟才能阅读完成。

  1. 第一步:生成 ssh 公私钥
ssh-keygen -t rsa -C“邮箱”
  1. 第二步:创建配置文件
# 配置 github.com
Host github.com                 
    HostName github.com
    IdentityFile C:\Users\chao\.ssh\id_rsa_github
    PreferredAuthentications publickey
    User 1326330617@qq.com

# 配置 gitee.com
Host gitee.com
    HostName gitee.com
    IdentityFile C:\Users\chao\.ssh\id_rsa_gitee
    PreferredAuthentications publickey
    User 1326330617@qq.com
    
# 配置 gitlab
Host *.*.*.*
    HostName *.*.*.*
    IdentityFile C:\Users\chao\.ssh\id_rsa_gitlab
    PreferredAuthentications publickey
    User yanglichao
  1. 第三步:将公钥放置到版本仓库
 不会去百度 

正文完
 0