Git配置SSH

配置信息

git config --global user.name "xxxx"    

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

关联Gitee码云

ssh-keygen -t rsa -C "[email protected]"

公钥信息

用文本方式打开id_rsa.pub文件,复制里面的公钥信息

将公钥信息粘贴到码云中,保存即可


然后通过 ssh -T [email protected] 来连接测试

IDEA操作

找到gitee资源,即可看到所有能clone的资源了

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