首先下載安裝git:https://git-scm.com/downloads/ 一路預設,安裝完成後,打開文件夾C:\Users\Administrator\.ssh(Administrator是當前用戶名),在空白處點滑鼠右鍵選擇“Git Bush Here” ,打開gitbush。 配置用戶名 ...
首先下載安裝git:https://git-scm.com/downloads/
一路預設,安裝完成後,打開文件夾C:\Users\Administrator\.ssh(Administrator是當前用戶名),在空白處點滑鼠右鍵選擇“Git Bush Here” ,打開gitbush。
配置用戶名和郵箱:
$ git config --global user.name "your_name"
$ git config --global user.email "[email protected]"
生成密鑰對:
ssh-keygen -t rsa -b 4096 -C "[email protected]"
此時文件夾中會生成兩個密鑰文件:
打開id_rsa.pub,將文件內容全選複製,準備粘貼到github上:
登陸github,點擊右上角頭像,選擇Settings,選擇SSH and GPG keys:
點擊“New SSH key”,將複製的密鑰內容粘貼進Key的輸入框,Title隨便取:
回到gitbush,測試輸入: ssh -T [email protected]
如果遇到 yes/no 的選項,輸入yes。最後看到 “Hi ....”表示設置成功。