昨天爲了配置Qt create中的Git,把我一直在使用的Github刪除了,今本覺得,這樣git的一些配置還在,但是,今天上傳一些提交的時候,提示我,git沒有密鑰。梳理一下,這個簡單的配置過程。html
bash $ ls -al /c/Users/lenovo/.ssh/ #*win下面的路徑,在這裏* total 37 drwxr-xr-x 1 197121 0 8月 7 13:47 ./ drwxr-xr-x 1 197121 0 8月 6 23:02 ../ -rw-r--r-- 1 197121 1675 7月 3 2015 github_rsa #舊的文件,新建之後,才知道有的(你也能夠直接使用已經存在的key) -rw-r--r-- 1 197121 401 7月 3 2015 github_rsa.pub #公鑰,上面的是私鑰 -rw-r--r-- 1 197121 3239 8月 7 13:47 id_rsa #新建的私鑰 -rw-r--r-- 1 197121 743 8月 7 13:47 id_rsa.pub #新建的公鑰 -rw-r--r-- 1 197121 803 8月 7 13:54 known_hosts
生成SSH key 而且添加進ssh-agent裏面
```bash
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com" # git bash 使用一個郵箱做爲一個標記,生成新的ssh key
Generating public/private rsa key pair.git
Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] #生成的目錄,會保存在這個地方(直接回車,便可)github
Enter passphrase (empty for no passphrase): [Type a passphrase] #爲了管理這些密鑰,您也能夠設置一個口令,空的話,不進行口林的設置
Enter same passphrase again: [Type passphrase again]shell
eval "$(ssh-agent -s)" #在git bash 中確認ssh-agent是否開啓
Agent pid 59566 #開啓的話,會有個IDbash
$ ssh-add ~/.ssh/id_rsa #添加您的私鑰到ssh-agentssh
```bash $ clip < ~/.ssh/id_rsa.pub # 將公鑰複製進剪切板,而後進入github網站的設置裏面,添加公鑰.*請看參考文獻2*
測試您的ssh 連接
```bash
ssh -T git@github.com #我本人直接是git push的,成功就ok了。無論出現什麼,直接yes就能夠了。ide
Hi username! You have successfully authenticated, but GitHub does not
provide shell access.測試
```網站
參考文獻