在工作過程中,我們經常需要在不同**託管平台上的倉庫編寫**,比如公司內部使用的gitlab倉庫和自己的github倉庫。因此,配置多個ssh金鑰方便拉取和提交**。
ssh-keygen -t rsa -f ~/.ssh/gitlab_rsa #公司倉庫
ssh-keygen -t rsa -f ~/.ssh/github_rsa #個人倉庫
ssh-agent bash #重新整理
ssh-add ~/.ssh/gitlab_rsa
ssh-add ~/.ssh/github_rsa
檔案內容如下:
#gitlab
host serverip #ip位址或網域名稱
port 22
hostname serverip #與host相同
preferredauthentications publickey
identityfile /home/yourname/.ssh/gitlab_rsa #金鑰路徑名
user login name #該伺服器上的使用者名稱
#github
host github.com
port 22
hostname github.com
preferredauthentications publickey
identityfile /home/username/.ssh/github_rsa
user your github username
MacOS配置Git的SSH金鑰
開啟bash先進入.ss 件夾下 cd ssh 然後輸入生成ssh ssh keygen t rsa c xx x意思是你的github註冊郵箱 然後會提示你輸入兩次密碼,一次是github的密碼,一次是push密碼,推薦設定成一樣的,免得忘掉www 如果有提示下圖圖說明正確了 如果有問題或者想要開...
SSH金鑰配置
對於ssh,有兩種方式進行登入,一種是口令進行登入,另外一種是使用金鑰進行登入。對於金鑰登入,首先需要生產秘鑰對 私鑰,公鑰 ssh keygen 該命令生產秘鑰對 將公鑰拷貝到所需要登入的機器的授權列表檔案authorized keys中即可 ssh copy id host 注意 安裝mimi版...
git配置金鑰(私鑰 ssh 公鑰)
經常幫人配置git的私鑰,來總結一下簡單的流程。1.本地安裝好git 2.桌面右鍵 git bash here 開啟git命令列 3.ssh keygen t rsa c nideyouxiang com 全部按enter 4.cd ssh 如果沒有執行第三步,則不會有這個資料夾 5.cat id ...