0


git commit时出现unable to auto-detect email address错误

在git commit的时候出现如下报错

*** 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 ‘Admin@Username.(none)’)

根据报错信息就可以看出问题出现在哪,很明显是因为没有用户信息,所以根据它的提示进行配置即可。

解决方案:

** 1.修改项目配置:**

** 使用命令**:

git config user.name [email protected]
git config user.email username

或者进入项目的.git目录中,打卡文件config,在最前面添加一下代码

 [user]
 [email protected]
 name=username

2.也可以直接使用全局配置:

git config --global user.name [email protected]
git config --global user.email username
标签: git

本文转载自: https://blog.csdn.net/2301_76979068/article/details/131719308
版权归原作者 小韩写着玩 所有, 如有侵权,请联系我们删除。

“git commit时出现unable to auto-detect email address错误”的评论:

还没有评论