gitee 添加ssh公钥

首先需要安装git

打开 Git Bash

在Bash中输入 ssh-keygen -t rsa -C "[email protected]" , 用你的邮件地址进行替换

连着按三次回车,第一次提示"Enter file in which to save the key",第二次提示"Enter passphrase (empty for no passphrase)",第三次提示"Enter same passphrase again"

之后会在 ~/.ssh/ 下生成 "id_rsa" 和 "id_rsa.pub" 两个文件

用 "cat ~/.ssh/id_rsa.pub" 命令查看公钥的value,如: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAB......",并复制

打开gitee网站,在"设置"中找到"安全设置"下面找到"SSH公钥",右边"公钥value"里面粘贴刚才复制的value即可

"确定"保存后,回到Bash,输入 "ssh -T [email protected]" 测试,如果有问你话,输入 "yes" 回车。如果返回 "Welcome to Gitee.com, 你的账号!",则表示已经成功

你可能感兴趣的:(Git)