如何給git新增 ssh key

2021-09-25 16:02:52 字數 610 閱讀 6352

參考:

1,檢視家目錄下是否有.ssh目錄

windows的根目錄一般指c:\users\你的使用者名稱

2,若沒有則生成乙個ssh-key

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

連按三次回車

3. 將.~/ssh/id_rsa.pub內容加入你的github

4. 設定你的git使用者名稱及郵箱

使用者名稱:git config --global user.name "name"

測試你的ssh-key

ssh -t [email protected]

輸入yes後若顯示 hi ***! you』ve successfully authenticated, but github does not provide shell access.

git 新增ssh key檢視config

git config list 檢視當前使用者資訊 1.git config global user.name xianbai 配置使用者名稱 2.git config global user.email xianbai example.com 配置郵箱 3.用了 global 選項,那麼更改的配置...

git 的ssh key 多個ssh key問題

背景 在設定github的時候,需要設定ssh key。備份當前的key,生成新的key用於登陸github。問題 原先得key不能用了。線上的機器 clone下來的project中origin預設內容是該project在伺服器端的目錄,你是沒有許可權往別人的project裡直接push commi...

Mac 終端建立ssh key並新增到GitHub

一,全域性修改git的使用者名稱和郵箱 git config global user.name cjq002 git config global user.email 692771080 qq.com 二,mac顯示隱藏系統檔案 方法一 快捷鍵 開啟finder,同時按下三個組合鍵 shift co...