安装git。打开终端输入命令
sudo apt-get install git
安装完成后进行git配置,输入指令
git config --global user.name "你的用户名"
git config --global user.eamil "你的邮箱地址"
要创建验证用的公钥
ssh-keygen -C 'you email address@gmail.com' -t rsa
然后就是一路回车,出现以下画面就是成功了
输入cd ~/.ssh
进入~/.ssh文件夹,输入gedit id_rsa.pub
打开id_rsa.pub文件,复制其中所有内容粘贴在你的github秘钥里即可。