当前位置:   article > 正文

关于git提交代码时报错Committer identity unknown的解决方案

committer identity unknown

今天安装好git后,创建新项目,当git上传提交时出现了一个问题,如下:

解释

Commit failed - exit code 128 received, with output: '*** 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 name (for <>) not allowed'

提示: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 config --global user.email "邮箱"
  2. git config --global user.name "名称"

在命令行输入回车之后,发现不会出现这个问题了。

注意:git config命令的–global参数,用了这个参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库指定不同的用户名和Email地址。

你也可以通过以下命令来查看你的配置信息:

git config -l

总的来说:这是因为Git是分布式版本控制系统,所以,它必须要识别于你来自哪一个身份:你的名字和邮箱地址。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/769897
推荐阅读
相关标签
  

闽ICP备14008679号