配置git的一些环境数据
   
- 
设置用户名和邮箱 git config --global user.name "leon" git config --global user.email "1332600258@qq.com"
- 
通过终端创建ssh key ssh-keygen -t rsa -C "1332600258@qq.com"
- 
查看生成的 .ssh/id_rsa.pub 文件 open .ssh/id_rsa.pubopen命令无法使用就直接用cat查看 cat .ssh/id_rsa.pub
- 
将生成的ssh key配置到github中 
 
版权声明:本文为m0_48912797原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
