美文网首页
SSH 多账号管理仓库

SSH 多账号管理仓库

作者: 沙人Q | 来源:发表于2021-02-20 18:45 被阅读0次

具体可参考:https://docs.github.com/cn/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent

  1. 用 Mac 自带工具,生成 ssh Key
    命令行:ssh-keygen -t rsa -C xxxx@github.com
    rsa 加密算法
    -C 创建账号
ssh-keygen -t rsa -C xxxx@qq.com
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/temp/.ssh/id_rsa): /Users/temp/.ssh/id_rsa_xiaobu
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /Users/temp/.ssh/id_rsa_temp.
Your public key has been saved in /Users/temp/.ssh/id_rsa_temp.pub.
The key fingerprint is:
SHA256:9apFioweHNwSwFnL/GKYBlZxJrnbuzumFh3YZK09xII xxxx@github.com
The key's randomart image is:
+---[RSA 3072]----+
| ..*=oo          |
|  +E+= +         |
|..  @ =   .      |
|.. * B o . .     |
|  + X + S . .    |
| . = O . o .     |
|    = + . o      |
|   o =   o       |
|  ..+o+ .        |
+----[SHA256]-----+
  1. 打开.ssh 文件中 pub 文件复制,访问https://github.com/settings/keys 点击添加 New SSH keys,把复制内容填充到下图中
    截屏2021-02-20 16.33.08.png
    名称自定义 ,点击 Add SSH key 即可
  2. 将 ssh 密钥添加到 ssh-agent中
ssh-add ~/.ssh/id_rsa_temp
  1. 测试:ssh -T git@github.com
Hi  xxxx(名称)! You've successfully authenticated, but GitHub does not provide shell access.
  1. 配置 config 进入 Mac 根目录的.ssh 文件中 打开 config
#个人账号
Host person.github.com
HostName github.com
User person_用户名
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_person

#公司账号
Host company.github.com
HostName github.com
User  company_用户名
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_company

6.替换项目仓库地址

  • 查看当前项目的远程地址
git remote -v

origin  https://github.com/xxxx.git (fetch)
origin  https://github.com/xxxx.git (push)
  • 移除当前项目的远程地址
git remote remove origin
  • 添加当前项目的远程地址
git remote add origin git@company.github.com:xxxx.git 

地址中 company.github.com 对应的是 config 文件中 host 后面内容

注意:

  1. 如果发现项目不能提交时:
Warning: Permanently added the RSA host key for IP address '52.74.223.119' to the list of known hosts.
git@github.com: Permission denied (publickey)
执行 : ssh-add ~/.ssh/id_rsa_temp
  1. 出现 "The current branch master has no upstream branch "
    问题原因:本地分支没有和远程分支关联起来
    解决方案:git push --set-upstream origin master (master代表远程分支名称)

相关文章

  • SSH 多账号管理仓库

    具体可参考:https://docs.github.com/cn/github/authenticating-to...

  • Git Xcode 使用

    1> 注册github账号 1、创建仓库 2、在xcode添加仓库账号 2> SSH Key 3> 启动Xcode...

  • git远程仓库--学习笔记5

    自行注册GitHub账号。本地Git仓库和GitHub仓库之间的传输是SSH加密。第1步:创建SSH Key。在用...

  • Git远程库命令

    SSH加密设置 注册GitHub账号,由于你的本地Git仓库和GitHub仓库之间的传输是通过SSH加密的,所以,...

  • 多账号配置SSH

    简书地址 : 多账号配置SSH 博客地址 : 多账号配置SSH 掘金地址 : 多账号配置S...

  • Git使用

    1> 注册github账号1、创建仓库2、在xcode添加仓库账号2> SSH Key3> 启动Xcode1、选择...

  • ssh 无密码登陆 和 管理多个主机

    生产 ssh key 传送公钥到对端服务器上 ssh 多账号管理 创建 .ssh/config 配置文件,由此文件...

  • iOS开发 -git

    以GitHub为远程仓库 首先创建你的github账号, 添加SSH 生成SSH 1.打开终端 ssh-keyge...

  • Missing or invalid credentials.报

    设置账号,通过http克隆代码 报错 使用ssh克隆代码新仓库没有ssh,创建ssh key 一路回车 打开ssh...

  • git多SSH管理及github、gitlab多账号多SSH管理

    平时我们自己有私人的github账号,工作的时候也可能要用公司的邮箱也注册了一个github账号在同一台电脑该如果...

网友评论

      本文标题:SSH 多账号管理仓库

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