github 提交使用git commit,报错Please tell me who you are

Posted illusion1010

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github 提交使用git commit,报错Please tell me who you are相关的知识,希望对你有一定的参考价值。

问题现象:

技术图片

 

 

问题原因:Git没有配置完,还不能进行各种Git操作;

解决方案一(完美解决)

  1. git config --global user.email "you@example.com"  
  2. git config --global user.name "Your Name"

解决结果:

技术图片

 

 

解决方案二:(本机无效、备份方案)

单独为项目配置的方法(全局和单独配置都存在的时候会默认使用项目单独配置的):

1.打开项目所在目录,找到隐藏的.git文件夹。注意这个文件夹是隐藏的,显示隐藏出来就行。

2.打开文件夹里的config文件,推荐用nodepad++打开。

3.添加这三行到文件:

[user]
name = XXX(自己的名称)
email = XXXX(邮箱)
当然也可以通过命令行的方式,只需要在 .git 文件夹下。 例如执行如下命令:

git config user.name "xxxxx"

以上是关于github 提交使用git commit,报错Please tell me who you are的主要内容,如果未能解决你的问题,请参考以下文章

Git 修改已提交 commit 的信息

git pull 报错

git报错-Initial commit Untracked files nothing added to commit but untracked

我的Android进阶之旅Android Studio 中 使用git提交代码报错:Can‘t commit changes from multiple changelists at once(代码片

如何使用“$ git commit”在消息开头引用问题(gitlab,github)? [复制]

错误记录Git 使用报错 ( no changes added to commit (use “git add“ and/or “git commit -a“) )