初次使用git commit报错问题

来源:互联网 发布:cda数据分析师考试 编辑:程序博客网 时间:2024/05/29 09:26

如果是第一次使用$ git commit指令会出现:

 *** 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 not allowed

请使用git config配置文件.


0 0