当前位置: 代码迷 >> 综合 >> fatal unable to auto-detect email address (got 15153@DESKTOP.(none))的解决方法
  详细解决方案

fatal unable to auto-detect email address (got 15153@DESKTOP.(none))的解决方法

热度:49   发布时间:2023-11-10 21:51:51.0

问题

使用git commit -m "......" 提交的时候,报出了下面的问题
*** 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 '15153@DESKTOP-0U0U3NE.(none)') 

解决方法

找到工程目录的 .git 文件夹,打开之后找到````config`` 文件,在最后边添加如下信息:

[user]
email=your email
name=your name

注意

这里 .git 为隐藏文件,并且 your emailyourname 这里对应你的要修改的。

  相关解决方案