Git 配置 ssh 公鑰

2021-08-14 16:29:40 字數 372 閱讀 1621

參考**

git 配置 ssh 公鑰。

1.首先,已經安裝有git

2.開啟命令視窗,生成金鑰檔案

ssh-keygen -t rsa -c 「[email protected]

3.開啟上面已經生成的的金鑰檔案,並拷貝

vim /d/users/qubianzhong/.ssh/id_rsa.pub

4.在git 託管**上找到 ssh公鑰 (此處用的是coding.net),並新增公鑰

5.完成後可以在命令列測試,首次建立鏈結會要求信任主機

ssh -t [email protected]

6.選擇ssh方式訪問倉庫,而不是http,然後就可以clone到本地了

git配置 ssh公鑰

參考資料 1 生成key,執行命令 ssh keygen t rsa c 郵箱 按3個回車,密碼為空。2 把key新增到github 或者git伺服器 找到公鑰的路徑 cd ssh 下的id rsa.pub檔案 開啟檔案,複製公鑰內容 注意 如果您手動複製了您的公共ssh金鑰,請確保您複製了以ssh...

配置ssh公鑰

ssh keygen t rsa c 你的郵箱 配置git賬戶 git config global user.name xuhaiyan git config global user.email haiyan.xu.vip gmail.com cd ssh cat id rsa.pub 配置ssh公...

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 ...