当前位置:   article > 正文

git ssh配置[多平台-多账号]_ssh-add --apple

ssh-add --apple

一、单用户常规配置:

1. 生成ssh钥匙对:
$ ssh-keygen -t ed25519 -C "your_email@example.com"
  • 1

不支持Ed25519的旧机器:

$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
  • 1
2. 添加私钥证书到ssh-agent:
  • 方式一,手动添加到ssh-agent和钥匙串
$ ssh-add --apple-use-keychain ~/.ssh/id_ed25519 
$ #--apple-use-keychain等同于废弃的-K
  • 1
  • 2
  • 方式二,自动添加到ssh-agent和钥匙串(macOS Sierra 10.12.2 or later)
    配置~/.ssh/config
Host github.com             #host别名,使用ssh时按此匹配配置
    HostName github.com     #真实主机地址(域名|IP)
    AddKeysToAgent yes      #使用ssh时自动添加私钥到ssh-agent(不启用的话需要按方式一手动添加)
    UseKeychain yes         #使用钥匙串填充密码(等同于--apple-use-keychain)
    PreferredAuthentications publickey  #使用公钥认证而不是账号密码
    IdentityFile ~/.ssh/id_ed25519  #证书文件(私钥)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

测试是否成功连接:

$ ssh -T git@github.com
  • 1
3. 添加公钥到github等:
$ #拷贝公钥
$ cat ~/.ssh/id_ed25519.pub |pbcopy
  • 1
  • 2

在这里插入图片描述

4. 修改本地仓库配置
$ git config user.email "xxx@xxx.com"
$ git config user.name "xxname"
$ #或直接在仓库配置文件中修改,.git/config
  • 1
  • 2
  • 3

二、多账户配置

  • 情形一,为不同平台的账号添加不同证书和配置(执行步骤1,2);
  • 情形二,为同一个平台的不同账号配置不同的证书,
    其关键在于:利用Host别名为同一个服务器地址(域名)添加不同的ssh证书和配置;
    相应就需要修改本地仓库的远程地址中的域名为不同的Host别名,以匹配不同的ssh证书和配置;(执行步骤1,2,3);
  1. 分别生成ssh钥匙对,并正确添加好公钥私钥;
  2. 添加~/.ssh/config配置:
# github账号
Host github.com
  HostName github.com
  User git
  AddKeysToAgent yes
  UseKeychain yes
  PreferredAuthentications publickey
  IdentityFile ~/.ssh/id_ed25519

# 其他github账号
Host xxx.github.com
  HostName github.com
  User git
  AddKeysToAgent yes
  UseKeychain yes
  PreferredAuthentications publickey
  IdentityFile ~/.ssh/id_ed25519_xxx

# gitee账号
Host gitee.com
  HostName gitee.com
  User git
  AddKeysToAgent yes
  UseKeychain yes
  PreferredAuthentications publickey
  IdentityFile ~/.ssh/id_ed25519_gitee
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

确认各个配置是否能成功连接:
successfully
3. 修改本地仓空中远程URL的域名(☀️☀️☀️XXX.github.com☀️☀️☀️需同~/.ssh/config中的对应Host匹配)

$ git remote rm origin
$ git remote -v
$ git remote add origin git@XXX.github.com:xxx/xxx.git
  • 1
  • 2
  • 3


如完成上述过程,重启后失效,是因为没要触发ssh-add操作,

可先执行:

$ ssh -T git@github.com # 触发(AddKeysToAgent)
  • 1

或在.bash_profile中添加:

$ ssh-add ~/.ssh/id_ed25519 > /dev/null 2>&1
$ ssh-add ~/.ssh/id_ed25519_xxx > /dev/null 2>&1
$ ssh-add ~/.ssh/id_ed25519_yyy > /dev/null 2>&1
  • 1
  • 2
  • 3

如出现
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/671342
推荐阅读
相关标签