[Git] Github、Bitbucket 綁定 ssh-key

若環境是Windows,請先 安裝Git


產生一組新的SSH Key

如果已經有現成的,可跳過這步驟

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
# 切換到使用者家目錄
cd ~

# 產生ssh key
ssh-keygen -t rsa -C "你的E-mail"

# 這裡是指定key的擺放位置,直接Enter下去使用預設值就好
Generating public/private rsa key pair.
Enter file in  which to have the key
(/Users/your_user_directory/.ssh/id_rsa):

# key的驗證密碼,在進行驗證時使用者端需要額外輸入密碼做驗證,也可以留空 (建議不要在公用電腦使用空密碼)
Enter passphrase (Empty for nopassphrase):

# 再次輸入
Enter same passphrase again:

# 完成後會看到家目錄多了一個.ssh的目錄,裡面有 id_rsa (Private-Key) 與 id_rsa.pub (Public-Key) 兩個檔案
# 使用 cat 指令顯示自己的public-key (要加入到git server用)
cat ~/.ssh/id_rsa.pub

將 Key 加入至 Github 帳號

將 Key 加入至 Bitbucket 帳號

Licensed under CC BY-NC-SA 3.0 TW
comments powered by Disqus