Git设置用户名及邮箱
原因:
git安装时,未设置用户名/邮箱,或是随意设置
解决方案:
启动git-bash,全局配置{user.name}和{user.email},使用git提交代码时会使用配置的{user.name}
1.查看命令
$ git config user.name
$ git config user.email
2.全局配置
#全局设置姓名
$ git config --global user.name your_name
##全局设置邮箱
$ git config --global user.email your_email