Git Github.com HTML

时间:2017-08-06 06:53:41

标签: git github

我最近在Coursera.com上开始了HTML,CSS和JAVASCRIPT课程。 我面临一些错误。我希望你们有人能帮帮我..

每当我使用git commit -m "WHATEVER"命令时,我都会收到这样的错误..

C:\Windows\System32\coursetest>git commit -m "Page"

*** 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 'Shantanu
Bhadouria@DESKTOP-VR557ID.(none)')

C:\Windows\System32\coursetest\site>git commit -c "Page" fatal: could
not lookup commit Page

请帮助......

先谢谢:)

1 个答案:

答案 0 :(得分:3)

这是正常的,不用担心,您必须在首次Git设置之后设置usernameemail。请点击此处查看更多https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup

来自DOC:

  

安装Git时应该做的第一件事就是设置你的用户   姓名和电子邮件地址。这很重要,因为每个Git都会提交   使用这些信息,并且它不可避免地被提交给你   开始创建:

$ git config --global user.name "Your name goes here"
$ git config --global user.email "Your_email_address_goes_here"

要验证您设置的设置,

git config --list