2021-05-12 14:32:11
多個GitHub帳號的SSH key切換
一台電腦上有一個ssh key,在github上提交程式碼,由於其他原因,你可能會在一台電腦上提交到不同的github上,怎麼辦呢...
假設你電腦上一個ssh key都沒有,如果有預設的一個了,請直接生成第二個
一、生成並新增第一個ssh key
$ ssh-keygen -t rsa -C "youremail@xxx.com"在Git Bash中執行命令一路回車,會在~/.ssh/目錄下生成id_rsa和id_rsa.pub兩個檔案
用文字編輯器開啟id_rsa.pub裡的內容,在Github中新增SSH Keys
不明白的請參考GitHub建立SSH Keys
二、生成並新增第二個ssh key
$ ssh-keygen -t rsa -C "youremail@xxx.com"這次不要一路回車了,給這個檔案起一個名字 不然預設的話就覆蓋了之前生成的第一個
假如起名叫my,目錄結構如下:
如果生成的第二個ssh key不在.ssh/下,可移動到此目錄
三、在.ssh/下建立config檔案 內容如下:
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Host my.github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/my
Host名字隨意,接下來會用到。
四、測試設定是否正確
如果出現Hi xxx!You've successfully authenticated 就說明連線成功了
現在就以下種情況給出不同的做法:
1、本地已經建立或已經clone到本地:
如下兩種解決方法:
開啟.git/config檔案
#更改[remote "origin"]項中的url中的
#my.github.com 對應上面設定的host
[remote "origin"]
url = git@my.github.com:itmyline/blog.git或者在Git Bash中提交的時候修改remote
$ git remote rm origin
$ git remote add origin git@my.github.com:itmyline/blog.git2、clone倉庫時對應設定host對應的賬戶
#my.github.com對應一個賬號
git clone git@my.github.com:username/repo.git作者:itmyhome
GitHub 教學系列文章:
通過GitHub建立個人技術部落格圖文詳解 http://www.linuxidc.com/Linux/2015-02/114121.htm
GitHub 使用教學圖文詳解 http://www.linuxidc.com/Linux/2014-09/106230.htm
Git 標籤管理詳解 http://www.linuxidc.com/Linux/2014-09/106231.htm
Git 分支管理詳解 http://www.linuxidc.com/Linux/2014-09/106232.htm
Git 遠端倉庫詳解 http://www.linuxidc.com/Linux/2014-09/106233.htm
Git 本地倉庫(Repository)詳解 http://www.linuxidc.com/Linux/2014-09/106234.htm
Git 伺服器搭建與用戶端安裝 http://www.linuxidc.com/Linux/2014-05/101830.htm
Git 概述 http://www.linuxidc.com/Linux/2014-05/101829.htm
分享實用的GitHub 使用教學 http://www.linuxidc.com/Linux/2014-04/100556.htm
相關文章