設定 SSH 連接 GitHub

關於 SSH keys

使用SSH協定,連接到遠端服務器 GitHub 進行身份驗證,透過設定 SSH keys,就不用在每次訪問 GitHub 的時候提供用戶名稱或密碼。

檢查 SSH keys

在生成 SSH keys之前,你可以先檢查本機是否有已存在的 SSH keys。

  1. 進入 Git Bash
  2. 輸入 bash ls -al ~/.ssh 查看是否有存在的 SSH keys
1
2
$ ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist</code>
  1. 查看目錄中是否已經有 public SSH key

預設情況下,public SSH key 的文件名會是以下類型之一,
副檔名為 .pub 就是 public key,另一個則是 private key:

  • id_dsa.pub
  • id_ecdsa.pub
  • id_ed25519.pub
  • id_rsa.pub

如果沒有 .ssh 的目錄,或是沒有 id_xxxid_xxx.pub 來命名的一對 key ,請生成一個新的 SSH keys:

生成新的 SSH keys

  1. 進入 Git Bash
  2. 複製以下指令,並替換自己的 GitHub 電子郵件
1
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

根據提供的電子郵件作為標籤,建立一個新的 SSH key。

1
> Generating public/private rsa key pair.

接下來的步驟都按 Enter 即可。

增加新的 SSH key 到 Github

  1. 複製 SSH key
1
2
$ clip < ~/.ssh/id_rsa.pub
# Copies the contents of the id_rsa.pub file to your clipboard
  1. 到 Github 網站加入你的 SSH key
  1. 點擊 SSH and GPG keys
  1. 點擊 New SSH key 或 Add SSH key.
  1. 在”標題”中為新的 key 添加一個描述性的標籤。 例如:如果是你個人的筆電,則可以將此名稱設為”Personal NB”。

  2. 貼上第一步驟複製的 key

  1. 點擊 Add SSH key
  1. 再次輸入密碼確認

參考文獻

  1. https://help.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent

  2. http://wiki.csie.ncku.edu.tw/github

  3. https://git-scm.com/book/zh-tw/v1/%E4%BC%BA%E6%9C%8D%E5%99%A8%E4%B8%8A%E7%9A%84-Git-%E7%94%9F%E6%88%90-SSH-%E5%85%AC%E9%96%8B%E9%87%91%E9%91%B0