本文介绍了在做'git commit --amend'的时候得到'致命的:空的标识名不允许'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现一堆东西说我需要设置我的 user.email
和 user.name
,但我有。这是我做一个的结果git config --global --list
:
这是怎么回事?感谢!
解决方案
请尝试以下操作:
git config --global user.namedzou
git config --global [email protected]
I am doing a git commit --amend
and I get this error:
I've found a bunch of stuff saying I need to set my user.email
and user.name
, but I have. This is the the result when I do a git config --global --list
:
What is going on here? Thanks!
解决方案
try do this first:
git config --global user.name "dzou"
git config --global user.email "[email protected]"
这篇关于在做'git commit --amend'的时候得到'致命的:空的标识名不允许'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!