不知道什麼神仙原因,我在vscode上傳時總是報錯,於是便重新設定了公鑰匙,方法如下
首先,清除所有的key-pair
ssh-add -d
rm -r ~/.ssh
刪除你在github中的public-key
重新生成ssh金鑰對
ssh-keygen -t rsa -c "***@***.com"
接下來正常操作
在github上新增公鑰public-key:
1、首先在你的終端執行 xclip -sel c ~/.ssh/id_rsa.pub將公鑰內容複製到剪下板
2、在github上新增公鑰時,直接複製即可
3、儲存
git 公鑰生成
git是分布式的 管理工具,遠端的 管理是基於ssh的,所以要使用遠端的git則需要ssh的配置。github的ssh配置如下 一 設定git的user name和email git config global user.name xuhaiyan git config global user.em...
Git 配置 ssh 公鑰
參考 git 配置 ssh 公鑰。1.首先,已經安裝有git 2.開啟命令視窗,生成金鑰檔案 ssh keygen t rsa c your email youremail.com 3.開啟上面已經生成的的金鑰檔案,並拷貝 vim d users qubianzhong ssh id rsa.pub...
Git生成 SSH 公鑰
1.生成ssh公鑰 ssh keygen t rsa c xx xx.com 1.三次回車即可生成 ssh key 2.引號中的為碼雲註冊的郵箱 3.windows中使用ssh keygen 桌面右鍵選擇gui bash here 檢視生成的public key cat ssh id rsa.pub...