打开CMD
1、
ssh-keygen -t rsa
2、
cd C:\Users\user5m/.ssh(输入对应的路径)
3、
ls(查看目录)
4、
cat id_rsa.pub(查看当前公钥)
5、
ssh-keygen -t rsa -C '709609406@qq.com'(输入git邮箱)
6、复制生成的公钥并打开码云(添加SSH公钥)
完成以上操作即可拉取代码提交代码
设置用户名、邮箱、密码等
查看:
git config --list git config user.name git config user.email 设置: git config --global user.name "zhangsan(新的用户名)" git config --global user.email "123456@qq.com(新的邮箱)" git config --global user.password"123456(新的密码)"
配置秘钥
1-1:查看秘钥
cd .ssh 或 cd ~/.ssh
1-2:设置账号/邮箱
git config --global user.name '用户名'
git config --global user.email '邮箱'
1-3:生成秘钥
ssh-keygen -t rsa -C '邮箱'
1-4:秘钥默认位置
此时文件夹中会生成两个密钥文件:id_rsa(秘钥)和id_rsa.pub(发送的公钥)。
默认的存储路径是:C:\Users\Administrator\.ssh
标签:git,rsa,公钥,user,config,ssh,切换 From: https://www.cnblogs.com/WebMadman/p/12107467.html