一、下载安装git
二、配置ssh公钥
1.由于新版本特性,所以需要在.ssh文件夹下新增一个config文件
新的ssh客户端不支持ssh-rsa算法,要修改本地配置重新使用ssh-rsa算法
在config文件中添加下列代码
Host *
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-r
2.查看云效平台的Username和email
云效平台:https://code.aliyun.com/
输入命令
git config --global user.name "Username"
git config --global user.email "Email"
举例
git config --global user.name "Zhangsan"
git config --global user.email "zhangsan@163.com"
会生成下面两个文件
可以测试一下链接
ssh -T git@code.aliyun.com
!!!!!!一定要选择yes!!!!!!!!!!!!
测试链接成功
三、添加公钥
打开id_rsa.pub文件,复制内容到云效的SSH上
文章来源:https://www.toymoban.com/news/detail-519085.html
四、克隆代码
git clone 刚刚复制的ssh链接
选择yes后会生成known_hosts文件
文章来源地址https://www.toymoban.com/news/detail-519085.html
五、下载完成
到了这里,关于利用git拉下阿里云的云效中的项目代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!