1.在Windows上安裝Git
在Windows上使用Git,可以從Git官網直接下載下傳安裝程式,然後按預設選項安裝即可
安裝完成後,在開始菜單裡找到“Git”->“Git Bash”,或者在檔案夾中點右鍵->“Git Bash”,蹦出一個類似指令行視窗的東西,就說明Git安裝成功!
2. 配置Git個人資訊
在Git Bash視窗中輸入
$ git config --global user.name "随意起名字"
$ git config --global user.email "你的GitHub郵箱"
//例如
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
3. 生成生成SSH key
$ ssh-keygen -t rsa
這三處直接回車即可
4. 由上面路徑C:\Users\Administrator\.ssh找到id_rsa.pub檔案,用文字編輯工具打開,複制
5. 到自己的GitHub中,找到Settings進入,點選SSH and GPG keys,再建立一個SSH key,将id_rsa.pub檔案中的内容放到key中
6. 測試連接配接
$ ssh -T [email protected]
7. 使用
$ git clone [email protected]:jianjunhou/spring01.git
8. 打開idea,進入setting,選擇Version Control -> Git -> Path to Git executable選擇git安裝目錄中bin檔案夾下的git.exe
9. 點選後邊test按鈕測試,成功後如下圖
10. 選擇菜單欄中的VCS菜單,checkout菜單
點選Clone
轉載于:https://www.cnblogs.com/learnapi/p/10778745.html