当你执行 git commit 命令时,如果遇到错误消息 “Please tell me who you are”,这通常意味着 Git 还没有配置你的用户名和邮箱地址。下面我将详细解释这个错误的含义、发生情境、解决步骤以及如何配置和验证配置。 1. 错误信息的含义 错误信息 “Please tell me who you are” 意味着 Git 无法识别当前用户的身...
报错Please tell me who you are. 具体如下: 原因:明确报错、请告诉我你是谁。意思是你在提交的时候、我不知道你是谁、也就是说你的GIT还没有配置完成、需要配置完成才可以执行。 解决: 方法1:使用命令 注意:报错中明确提示run 两个命令、需要将其中的邮箱、名字改成你自己的 > gitconfig--globaluser.email...
如果使用git过程中出现了,please tell me who you are ,需要设置一下使用者的身份。 1.git config user.name "username" 2.git config user.email "username@XXX.com"
“git使用中遇到Please tell me who you are怎么解决”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章! 当前题目:git使用中遇到Pleasetellmewhoyouare怎么解决 标题网址:http://www.pzhseo.com/article/pdcecd.html 其他...
在git中,使用git.commit命令时,这个Please tell me who yoy are 解决办法,程序员大本营,技术文章内容聚合第一站。
在git上初次提交项目时,报了一个Please tell me who you are...等等错误,如图所示 在网上搜索一下,找到了解决方法.特此记录下来. 打开你自己安装Git目录下的git - bash,输入命令 git config --global user.email "你的邮箱" git config --global us... ...
昨天晚上在提交项目到码云的时候,xcode提示Please tell me who you are. 错误提示,查了点资料,然后解决办法如下 1.打开终端,进入项目路径 $cd [项目根路径] 2.进入.git目录 $ls -a $cd .git 3.利用修改config文件 $vim config 4.在config文件末尾添加 ...
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 config --globaluser.email"you@example.com" #将“you@example.com”换成自己的邮箱 git config --globaluser.name"Your Name" #将“Your Name”换成自己的名字/昵称 再运行提交到仓库指令即可 (base) on:~/learngit/prog1$git commit -m "wrote a readme file" ...
git上传包提交时出现:Please tell me who you are.,如下图: 是因为在创建git文件夹的时候信息不完善导致的 解决方法:在命令行中执行 git config --global user.email "你的邮箱" git config --global user.name "你的名字" 输入完后再接着执行git commit “注释 ...