1. 检查本地是否配置用户,user.name 和user.email
// 查看用户配置信息
git config --list
如果未配置则输入以下命令
git config --global user.name "你的用户名"
git config --global user.email "你的邮箱"
如果已配置则在.git/config文件下添加如下内容
[user]
name = 你的用户名
email = 你的邮箱
2 .线上项目也做如上操作 然后就可以提交了成功了