筆者偏在阿里雲,github,開源中國上均存放一些私有專案**,因此需要再windows電腦上配置多個ssh key作業系統:windows 7
git註冊好 github 賬號,其中 email 為[email protected]
用支付寶/**賬號登入 ,在設定->個人設定頁面看到郵箱為[email protected]
1.開啟git bash
2.輸入命令
ssh-keygen -t rsa -c "[email protected]"
3.執行結果
4.拷貝公鑰
clip < ~/.ssh/id_rsa_github.pub
5.新增複製的公鑰到 github 中
6.在 .ssh 目錄下建立 config 配置檔案
輸入以下配置資訊:
# 配置github 的key
host github.com
hostname github.com
user git
identityfile c:\users\administrator\.ssh\id_rsa_github
7.命令測試:
ssh -t [email protected]
1.在git bash輸入命令
ssh-keygen -t rsa -c "[email protected]"
2.執行結果
3.拷貝公鑰
4.新增 ssh 公鑰
5.編輯 config
新增以下資訊
# 配置 code.aliyun 的 key
host code.aliyun.com
hostname code.aliyun.com
user git
identityfile c:\users\administrator\.ssh\id_rsa_aliyun_code
6.測試
ssh -t [email protected]
同一臺電腦關於多個ssh key管理
windows下git多賬號配置,同一電腦多個ssh-key的管理
阿里雲** ssh
github gitlab 管理多個ssh key
以前只使用乙個 ssh key 在github上提交 由於工作原因,需要再新增乙個ssh key在公司的 gitlab上提交 下面記錄下配置過程,防止遺忘。說明下我的環境是 win7 msysgit gitbash,相信 nux bash 也是同樣的道理。第一次使用ssh生成key,缺省會在使用者 ...
如何在本機配置多個github的sshkey
當我們想要在一台機器上開發多個不同的github專案時,我們就需要配置多個不同的公鑰。github站點限制了乙個ssh公鑰只能在乙個倉庫用一次,不然就會提示key is already in use。當我們在本機使用多個ssh公鑰時,又該如何管理呢?本文以我的乙個專案在ubuntu18.04上的操作...
windows 乙個電腦配置多個ssh key
然後把對應公鑰加到github gitee的配置上 測試ssh t git gitee.com ssh t git gitee.com i ssh id rsa gitee f 金鑰同級建立 config 檔案 新增以下配置 配置gitee.com host github.com hostname ...