1. 查看当前的用户名和邮箱
    2. $ git config user.name
    3. $ git config user.email
    4. 配置用户名和邮箱
    5. $ git config --global user.name "superGG1990"
    6. $ git config --global user.email "superGG1990@163.com"
    7. 生成ssh
    8. $ ssh-keygen -t rsa -C "your_email@youremail.com"
    9. 验证可用
    10. $ ssh -T git@github.com
    11. 查看当前绑定的链接
    12. $ git remote -v
    13. 设置连接
    14. $ git remote set-url origin git@github.com:someaccount/someproject.git