将文件提交到GitHub时出错

时间:2017-08-01 14:34:53

标签: github-for-windows

每当我尝试将文件提交到github时,我都会收到以下错误:

vanes@vanessaddiniz MINGW64 ~/HTML-CSS-and-JS---coursera/site (master)
$ git commit -m "Homepage"

*** 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: unable to auto-detect email address (got 'vanes@vanessaddiniz.(none)')

这是我第一次尝试这样做。我刚刚开始了一个关于课程的课程,我完成了与视频完全一样的工作,并且每个方面都很顺利。我该如何解决?有人可以帮助我,提前谢谢!

P.S:我正在使用Windows。

1 个答案:

答案 0 :(得分:1)

Git在提交存储库时总是需要标识。它使用的标识是您的姓名或电子邮件地址。这将用于显示Git历史记录中属于用户的提交。上面的输出已经显示了你需要做什么。运行以下命令,并填写您的姓名和电子邮件地址。

  

git config --global user.email“您的电子邮件”
  git config --global user.name“你的名字”

在此之后你应该能够提交git。