git常用命令
1、生成公钥
ssh-keygen -t rsa -C "your_email@example.com"
2、设置用户名 邮箱
git config --global user.name "humingx"
$ git config --global user.email "humingx@yeah.net"
3、查看已经设置的用户名
git config user.name
git config user.email
4、记住用户名和密码
https://www.cnblogs.com/ballwql/p/3462104.html 用第一个方法就可以了