Git 中 SSH Key 生成和配置

weixin_33670713發表於2018-03-06

1、 安裝 git

2、配置使用者名稱、郵箱

vim ~/.gitconfig

修改配置並儲存:

[user]
    name = username
    email = youremail@example.com

3、生成金鑰:

ssh-keygen -t rsa -C "youremail@example.com"

三次回車後生成。

4、獲取公鑰:

cat ~/.ssh/id_rsa.pub

5、複製輸出的公鑰,貼上到倉庫的 SSH keys 中。

相關文章