如果使用git过程中出现了,please tell me who you are ,需要设置一下使用者的身份。 ...
提示也就是需要你登录一下,确认你的身份,但是不要按照其提示输入,先输入命令git config user.name username ,换行输入git config user.email email 输入正确的之后就能使用 git add commit等命令进行版本控制了 ...
2019-04-03 14:33 0 574 推荐指数:
如果使用git过程中出现了,please tell me who you are ,需要设置一下使用者的身份。 ...
#事故现场 执行git commit命令提示:"Please tell me who you are" 意思是,Git想知道提交代码的是谁,造成这个现象的原因可能是第一次提交代码,也有可能是长时间不操作,需要重新验证下。 #解决方案 在Git控制台输入一下命令 再次执行git ...
在命令行中输入 ...
解决方案: 见提示就知道, 要您填上你得注册的邮箱和昵称,例如: OK! ...
当使用git出现错误 “ Author identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global ...
git上传包提交时出现:Please tell me who you are.,如下图: 是因为在创建git文件夹的时候信息不完善导致的 解决方法:在命令行中执行git config --global user.email "你的邮箱"git config --global ...
1.找到GIt客户端安装的路径的文件夹,并打开git-bash 在git-bash下分别输入并会回车 git config --global user.name "GitHub账号" $ git config --global user.email "GitHub账号注册的邮箱 ...
在想拉取最新的git代码时提示要输入远端分支。具体提示见以下: 这里的原因是因为不在master分支,在tag或者其它分支上。使用git branch查看,目前在一个tag上。 这里解决方式有2种。 或者更简单的方式,直接指定分支 ...