ssh-keygen -t rsa -C "youremail"
回车3次
cat ~/.ssh/id_rsa.pub
这时候就会显示出私钥内容 整段复制下来(包括前ssh-rsa 和后邮箱)
复制到码云上面(记得读写权限)
ssh -T git@gitee.com
提示 welcome to Gitee.com yourname! 那表示成功
git clone SSH仓库地址
如果add碰到此问题:
The file will have its original line endings in your working directory
git rm -r --cached .
git config core.autocrlf false
git add .
. 代表当前目录
如果push碰到此问题:
failed to push some refs to git?
git pull --rebase origin master
git push -u origin maste
这样就可以了