以下如果要產生給github用的 ssh key
我習慣命名為github
```
ssh-keygen -t rsa -P '' -f ~/.ssh/github -C 'your@email5566.com'
```
這樣會在你的~/.ssh下建立兩個檔案
~/.ssh/github 與 ~/.ssh/github.pub
~/.ssh/github是私鑰要好好保存
~/.ssh/github.pub可以丟到github上
接著建立~/.ssh/config檔案,內容為
```
Host github.com
Hostname github.com
User git
Port 22
identityfile ~/.ssh/github
```
這樣在使用ssh連到github.com時他就會自己做認證了
沒有留言:
張貼留言