配置
git config --global user.name 您的名字
git config --global user.email 您的邮箱地址
验证前面做的那些配置
git config --global --list
接下来配置ssh,在打开git命令终端,输入
cat ~/.ssh/id_rsa.pub
出现如下提示就说明没有这个文件,需要我们手动创建ssh公钥和私钥。
创建ssh 公钥和私钥,输入下面命令一路回车。
ssh-keygen -t rsa -C "****@qq.com"
获取生成的公钥。
cat ~/.ssh/id_rsa.pub
拷贝你的公钥到你的粘贴板下
Windows:
clip < ~/.ssh/id_rsa.pub
Mac:
pbcopy < ~/.ssh/id_rsa.pub
GNU/Linux (requires xclip):
xclip -sel clip < ~/.ssh/id_rsa.pub
添加SSH 公钥到阿里云Code 云控制台:
进入设置下的SSH公钥,点击增加SSH公钥即可将前面的公钥黏贴进去。
来源:CSDN
作者:DarkFallYou
链接:https://blog.csdn.net/DarkfallYou/article/details/104152232