生成秘钥
$ cd ~/.ssh
$ ssh-keygen -t rsa -C 'youremail@qq.com'
$ cat ~/.ssh/id_rsa.pub
查看信息
#git 所有信息
$ git config --list
#查看git用户名、密码、邮箱的配置
$ git config user.name
$ git config user.password
$ git config user.email
#全局配置
$ git config --global user.name "peak6"
$ git config --global user.email "peak6@aaa.com"
#项目配置
$ git config user.name "peak6"
$ git config user.email "peak6@aaa.com"
#全局删除
$ git config --global --unset user.name "peak6"
$ git config --global --unset user.email "peak6@aaa.com"
#项目删除
$ git config --unset user.name "peak6"
$ git config --unset user.email "peak6@aaa.com"