Git/GitHub问题解决(Windows环境)

文|Seraph

  1. 当使用git commit提交修改时,老是提示如下:
*** 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.

解决:首先按说明执行添加邮箱和用户名。如还是无效则执行以下语句:

  git config --local user.email "[email protected]"
  git config --local user.name "Your Name"

或者退出目录以后,重新按提示执行添加邮箱和用户名。
总之很神奇,我也没搞懂为什么会这样。。。

你可能感兴趣的:(Git/GitHub问题解决(Windows环境))