1.创建ssh key
ssh-keygen -C "chunlongyuan@gmail.com" -f ~/.ssh/github
执行一系列后会生成key 进入github的account setting , 左边一栏ssh keys 添加刚才生成的.pub里的全部内容
2.验证上一步操作是否有效
ssh -T git@github.com
出现You’ve successfully authenticated, but GitHub does not provide shell access表示成功
3.设置git的个人信息
git config --global user.name "chunlongyuan"
git config --global user.email "chunlongyuan@gmail.com"