1.下载,安装git软件
下载地址:https://git-scm.com/download/win
(根据自己的系统选择下载即可,如果安装过程提示无法添加环境变量到path中,则需要将git安装目录下的cmd目录添加到系统的path变量下。)
2.配置git(搜索,git bash,)
git config --global user.name "your name" (gitee里的昵称)
git config --global user.email "your email" (gitee注册时的邮箱)
git config --global credential.helper store (避免重复填写个人信息)
3.生成ssh公钥
①生成:
ssh-keygen -t rsa -C "youremail@xxx.com"
②查看:
cat ~/.ssh/id_rsa.pub
(例如:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....)
③ 打开码云SSH公钥管理页面 https://gitee.com/profile/sshkeys
填写标题
yourname's SSH key
公钥:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc...
添加后,回到Git Bash中输入
ssh -T git@gitee.com
如果有弹出询问(yes/no),输入
yes
若返回
# Welcome to Gitee.com, YourGiteeName!
则证明添加成功。