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 'shang@DESKTOP-6NVANUG.(none)')
首先查看git的用户名和email是否与自己的相符
查看用户名
git config user.name
查看用户邮箱
git config user.email
如果不相符,
第一种:在打开idea命令窗口,输入以下命令:
修改当前项目的用户名和邮箱地址:
$ git config user.name "username"
$ git config user.email "email"
修改全局用户名和邮箱地址:
$ git config --global user.name "username"
$ git config --global user.email "email"
第二种:当前项目的 Git 配置 : .git/config 文件
.git/config 是当前项目下的配置文件,只适用于当前项目有效