建立公鑰的目的: 使用ssh公鑰可以讓你在你的電腦和碼雲通訊的時候使用安全連線(git的remote要使用ssh位址)1.開啟終端進入.ssh目錄
cd ~/.ssh
如果.ssh資料夾不存在,執行指令自動建立
mkdir ~/.ssh
2.生成rsa金鑰對
ssh-keygen -t rsa -c "你的郵箱@***.com"
為了方便全程回車即可(不用輸入ras檔名及密碼)
3.檢視公鑰內容
cat ~/.ssh/id_rsa.pub
4.將公鑰內容複製並貼上(注意:公鑰內容以ssh-rsa開頭,你的郵箱結尾)
貼上位址
5.新增公鑰完成後進行測試公鑰
測試ssh鏈結
ssh -t [email protected]
當終端提示welcome to git@osc ... 表示鏈結成功
至此以後只要拷貝ssh鏈結位址,然後利用git指令即可進行相關操作!
git在windows上配置ssh公鑰
git在windows上配置ssh公鑰 一 設定git的user name和email git config global user.name lxyz git config global user.email 1129103472 qq.com 二 生成金鑰 ssh keygen t rsa c ...
生成 新增SSH公鑰
ssh keygen t rsa c xx xx.com generating public private rsa key pair.按照提示完成三次回車,即可生成 ssh key。通過檢視 ssh id rsa.pub檔案內容,獲取到你的 public key cat ssh id rsa.pu...
生成 新增SSH公鑰
碼雲提供了基於ssh協議的git服務,在使用ssh協議訪問倉庫倉庫之前,需要先配置好賬戶 倉庫的ssh公鑰。你可以按如下命令來生成 sshkey ssh keygen t rsa c xx xx.com generating public private rsa key pair.按照提示完成三次回...