使用git报错,出现git fatal: unable to auto-detect email address

今天在调试更新git时出现了如下问题:fatal: unable to auto-detect email address

解决方法:

 

1.输入以下两段命令:

git config --global user.email "[email protected]"  

git config --global user.name "Your Name"

 

2.直接在git中使用如下命令:

git  config  user.name  "xxxxx"

 

3.找到根文件.git文件,输入如下:

[user]
    name = XXX(自己的名称)
    email = XXXX(邮箱)



转载于:https://www.cnblogs.com/bobo1657179419/p/7474663.html

你可能感兴趣的:(使用git报错,出现git fatal: unable to auto-detect email address)