报错内容:Author identity unknown *** Please tell me who you are. Run git config --global user.email “you@example.com”
git config --global user.name “Your Name” to set your account’s default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got ‘XHZ@LAPTOP-A5IV6209.(none)’)
原因:没有设置本地仓库用户名和邮箱
方法一
解决:设置本地用户名邮箱
//在Git Bash Here输入命令设置name和email
git config -global user.name "you name"
git config -global uer.name "you email"
在本地仓库进行项目文件配置
1.打开项目所在目录,显示隐藏目录.git,找到config文件
操作:在Windows在查看隐藏文件
进入.git目录,找到confi文件,选择打开方式(建议使用nodepad++打开)
把以下内容添加到config文件中
[user]
name = (you name)
email = (you email)
完成操作就设置成功了
方法二
直接在本地项目下右键打开Git Bash Here 输入命令行设置本地仓库的用户名和邮箱:
git config --global user.name “your name”
git config --global user.email “your email”
参考文章:
https://blog.csdn.net/qq_46036214/article/details/116275598