git ssh key配置

1. 设置global name 和 email

$ git config --global user.name "your git username"

$ git config --global user.email "your git email [email protected]"

2. 生成SSH密钥

$ cd ~/.ssh

$ ssh-keygen -t rsa -C “[email protected]

3.在github上添加id_rsa.pub里的公钥

你可能感兴趣的:(git ssh key配置)