报错Please tell me who you are. 具体如下: 原因:明确报错、请告诉我你是谁。意思是你在提交的时候、我不知道你是谁、也就是说你的GIT还没有配置完成、需要配置完成才可以执行。 解决: 方法1:使用命令 注意:报错中明确提示run 两个命令、需要将其中的邮箱、名字改成你自己的 > gitconfig--globaluser.email...
在Git中遇到"Please tell me who you are"的警告时,通常表示Git没有配置好你的用户信息。要解决这个问题,你需要完成以下步骤:1. 进入项目的根目录,这里会有一个隐藏的.git文件夹,使用ls -a命令可以查看到这个文件夹。2. 进入.git文件夹,会发现其中有一个config文件。可以使用Mac自带的vim编辑...
git上传包提交时出现:Please tell me who you are.,如下图: 是因为在创建git文件夹的时候信息不完善导致的 解决方法:在命令行中执行 git config --global user.email "你的邮箱" git config --global user.name "你的名字" 输入完后再接着执行git commit “注释 执行成功如下图:...
git问题:git commit提示Please tell me who you are. 今天熟悉git的时候遇到一个问题: 解决: 按照提示的要求给用户名和合邮箱就行了 git config user.name "gym" git config user.email "***@qq.com" 1. 2. 然后正常操作就行了。
git提交时,错误如下 解决方法 第一种 ,直接设置全局的用户 第二种,为项目单独设置 因我的电脑有多个git账户,所以不想通过设置全局邮箱和名字来解决。 进入到项目目录,找...
在git中,使用git.commit命令时,这个Please tell me who yoy are 解决办法,程序员大本营,技术文章内容聚合第一站。
下图是正确 在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 --...
在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. ...
git Please tell me who you are,打开终端,输入:gitconfig--globaluser.email"你的邮箱"gitconfig--globaluser.name"你的名字"输入完后再接着执行gitcommit即可
1、这样的问题一般只出现在初次配置gitee的情况当中 作者身份未知***请告诉我你是谁。跑git-config--全局user.email“you@example.com“git-config--全局用户名“Your name”设置帐户的默认标识 2、给他添加一个名字和邮箱就行了 3、添加上之后,在commit就行,就好了 ...