每件事情都很顺利但是当我进入" git commit -m' First Commit' "它不起作用并显示此错误
developer@developer-PC MINGW64 ~/Desktop/ajax (master)
$ git commit -am 'gjhgj'
*** 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: empty ident name (for <(null)>) not allowed
请有人帮助这方面
答案 0 :(得分:3)
您应该通过运行
设置错误消息中指定的电子邮件和名称git config --global user.email "<you@example.com>"
git config --global user.name "<Your Name>"
如果您只想为当前项目设置这些信息,则可以省略--global。