赞
踩
说明:win系统是可以弹窗出来保存gitee的用户名和密码。这里是对linux系统而言的配置方法。如果win系统不能保存的话,可以尝试在gitbash控制台使用本博客的命令尝试配置。
1)生成生成ssh公钥,跟着步骤执行这些命令:
ssh-keygen-trsa-C"xxxxx@xxxxx.com"
将邮箱替换成码云注册邮箱。
回车三次即可生成sshkey
2)查看 public key
cat ~/.ssh/id_rsa.pub
将ssh-rsa到邮箱部分的内容复制出来,全部复制,ssh-ras头也不能少
3)添加用户sshkey
登录码云平台,在设置中添加sshkey
二、变更为ssh协议认证
1)将https协议认证变成ssh协议认证
删除原来的远程提交方式
git remote rm origin
添加新的提交方式
git remote add origin git@github.com:xxx/xxx.git
2)提交代码
git push-u origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。