在使用git commit 命令中出现 plesase tell me who you are问题

开心跟着视频学git的基本命令行操作中,一切操作无误。当执行git commit -am "add"时出现错误

错误如下


$ git commit -am "add"

*** 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.

emmmm,好嘛,一堆英文,不过难不倒,GOOGLE翻译打开,一个单词一个单词查意思

原来是git没有配置,无法辨认我们是谁,需要设置一个邮箱和用户名。

直接在git-bash上按照提示进行操作


git config --global user.email "[email protected](你的邮箱地址)"

 git config --global user.name "Your Name(你的名字)"

设置完以后就可以了(不要像我我中间手残误写错几次单词,尴尬,哈哈)

你可能感兴趣的:(在使用git commit 命令中出现 plesase tell me who you are问题)