配置账号
git config –-global user.name "yourName"
git config –-global user.email "yourMail"
本地需要安装git:https://git-scm.com/download/。安装成功后本地右键鼠标会多出一些git选项。
配置ssh key
ssh-keygen -t rsa -C "yourMail" 需要输入密码
在这个目录下~/.ssh 生成 d_rsa id_rsa.pub known_hosts
cat id_rsa.pub 配置
配置检测成功
ssh -T git@github.com