MAC如何生成SSH key與GitHub關聯
一、檢查 SSH key 是否存在
在終端輸入如下代碼:
ls -al ~/.ssh
如果沒有,終端顯示如下:
No such file or directory
如果有,終端顯示如下:
? ~ ls -al ~/.ssh total 24 drwx------ 5 ant staff 160 1 11 11:12 . drwxr-xr-x+ 91 ant staff 2912 1 11 11:32 .. -rw------- 1 ant staff 1675 1 11 11:09 id_rsa -rw-r--r-- 1 ant staff 399 1 11 11:09 id_rsa.pub -rw-r--r-- 1 ant staff 1989 9 28 15:48 known_hosts
二、生成新的 SSH key
在終端輸入以下代碼:
ssh-keygen -t rsa -C "[email protected]"
其中 [email protected] 為你在 GitHub 註冊時的郵箱。
成功後終端顯示如下:
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/xxx/.ssh/id_rsa):
提示你保存 .ssh/id_rsa 的路徑,這裏直接 enter。
Created directory ‘/Users/xxx/.ssh‘. Enter passphrase (empty for no passphrase):
提示輸入 passphrase,每次與 GitHub 通信都會要求輸入 passphrase,為了簡化操作,建議輸入enter。
成功後終端顯示:
Your identification has been saved in /Users/xxx/.ssh/id_rsa. Your public key has been saved in /Users/xxx/.ssh/id_rsa.pub. The key fingerprint is: 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48 [email protected] The key‘s randomart image is:(後面圖形省略)
三、添加 key 到 SSH
終端輸入如下命令:
ssh-add ~/.ssh/id_rsa
此時會要求輸入 passphrase,輸入步驟二中填的 passphrase。
成功後,終端出現如下顯示:
Identity added: /Users/xxx/.ssh/id_rsa (/Users/xxx/.ssh/id_rsa)
最後,在 /Users/xxx/.ssh/ 生成兩個文件,id_rsa 和 id_rsa.pub
此時,SSH key 已經生成成功。
四、添加 SSH key 到 GitHub
1.復制 id_rsa.pub 中的所有內容
打開 id_rsa.pub,終端命令如下:
vim ~/.ssh/id_rsa.pub
手動復制以 ssh-rsa 到以 [email protected] 結尾的所有內容。
或者直接輸入命令復制 id_rsa.pub 中的所有內容,終端命令如下:
pbcopy < ~/.ssh/id_rsa.pub
2.登錄 GitHub
打開個人 Settings-->SSH and GPG keys-->new SSH key
Title隨便寫。
Key粘貼之前復制的內容。
這樣SSH key 就添加的 GitHub。
五、檢測 SSH key
終端輸入如下命令:
ssh [email protected]
此時會驗證 SSH key 是否可以訪問 GitHub。
若成功則顯示如下:
Hi your_name! You‘ve successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
MAC如何生成SSH key與GitHub關聯