报错Please tell me who you are. 具体如下: 原因:明确报错、请告诉我你是谁。意思是你在提交的时候、我不知道你是谁、也就是说你的GIT还没有配置完成、需要配置完成才可以执行。 解决: 方法1:使用命令 注意:报错中明确提示run 两个命令、需要将其中的邮箱、名字改成你自己的 > gitconfig--globaluser.email...
--- ### #事故现场 执行git commit命令提示:**"Please tell me who you are"** ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200622152212540.png) 意思是,Git想知道提交代码的是谁,造成这个现象的原因可能是第一次提交代码,也有可能是长时间不操作,需要重新验证下。 ### #解决方案 在Git控制...
在Git中遇到"Please tell me who you are"的警告时,通常表示Git没有配置好你的用户信息。要解决这个问题,你需要完成以下步骤:1. 进入项目的根目录,这里会有一个隐藏的.git文件夹,使用ls -a命令可以查看到这个文件夹。2. 进入.git文件夹,会发现其中有一个config文件。可以使用Mac自带的vim编辑...
1、这样的问题一般只出现在初次配置gitee的情况当中 作者身份未知***请告诉我你是谁。跑git-config--全局user.email“you@example.com“git-config--全局用户名“Your name”设置帐户的默认标识 2、给他添加一个名字和邮箱就行了 3、添加上之后,在commit就行,就好了 编辑 4、这样bug就解决了...
git提交时,错误如下 解决方法 第一种 ,直接设置全局的用户 第二种,为项目单独设置 因我的电脑有多个git账户,所以不想通过设置全局邮箱和名字来解决。 进入到项目目录,找...
下图是正确 在git创建项目时出现,是因为在创建git文件夹的时候信息不完善导致的 下图是正确 1.git init 2.git config user.name "someone"3.git config user.email " someone@someplace.com "4.git add 5.git commit -m "some init msg"Please tell me who you are.Run git config --...
简介:*** Please tell me who you are.Run git config --global user.email “you@example.com“ git confi 大家好,我是爱你三千遍斯塔克,我们平常使用gitee的时候可能会遇到这样的问题,如何快速的找到解决问题的方法呢?这里有些资料可供大家参考,希望对大家有帮助: ...
1.git init 2.git config user.name "someone" 3.git config user.email "someone@someplace.com" 4.git add * 5.git commit -m "some init msg" *** Please tell me who you are. Run git config --global user.email "you@example.com" ...
git问题:git commit提示Please tell me who you are. git问题:git commit提示Please tell me who you are. 今天熟悉git的时候遇到一个问题: 解决: 按照提示的要求给用户名和合邮箱就行了 git config user.name "gym" git config user.email "***@qq.com"...
在git中,使用git.commit命令时,这个Please tell me who yoy are 解决办法,程序员大本营,技术文章内容聚合第一站。