Git配置SSHKey

一、设置Git的user name和email

git config --global user.name "xuhaiyan"
git config --global user.email "[email protected]"

二、生成SSH密钥

ssh-keygen -t rsa -C “[email protected]
默认不设置密码,连按三个回车键

你可能感兴趣的:(Git配置SSHKey)