请注意,本文编写于 1773 天前,最后修改于 1771 天前,其中某些信息可能已经过时。
错误代码:
Commit failed - exit code 128 received, with output: '*** Please tell me who you are.
Run
git config --global user.email "[email protected]"
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 'xxxr@xxx.(none)')'
解决方法:
在项目的根目录下有一个隐藏文件夹.git
,里面有一个config
文件,在文件的最后添加下面的代码:
[user]
name = xxx
email = xxx
xxx换成自己的名字和邮箱地址,然后保存文件.
-
版权声明:本文为原创文章,版权归Joe所有,转载请注明出处.
本文链接:https://www.j000e.com/windows/githubdesktopcode128.html
本作品采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可。