*** Please tell me who you are.Run git config --global user.email “you@example.com“ git confi

这篇具有很好参考价值的文章主要介绍了*** Please tell me who you are.Run git config --global user.email “you@example.com“ git confi。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

大家好,我是爱你三千遍斯塔克,我们平常使用gitee的时候可能会遇到这样的问题,如何快速的找到解决问题的方法呢?这里有些资料可供大家参考,希望对大家有帮助:

*** please tell me who you are. run git config --global user.email 1、这样的问题一般只出现在初次配置gitee的情况当中

作者身份未知
***请告诉我你是谁。

git-config--全局user.email“you@example.com“
git-config--全局用户名“Your name”
设置帐户的默认标识

2、给他添加一个名字和邮箱就行了

//分别执行
 
git config --global user.name "你的名字"
 
git config --global user.email "你的邮箱"

3、添加上之后,在commit就行,就好了

*** please tell me who you are. run git config --global user.email 文章来源地址https://www.toymoban.com/news/detail-790991.html

4、这样bug就解决了

到了这里,关于*** Please tell me who you are.Run git config --global user.email “you@example.com“ git confi的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • npm报错:npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.

    一、前言 1,因为最近在b站学习vue框架,安装脚手架时想要配置npm淘宝镜像 npm config set registry https://registry.npm.taobao.org 时报错了,然后知道我没有安装node.js 2,node.js安装后,执行npm报错npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead. 3,百度了一些后,初

    2024年02月07日
    浏览(30)
  • 三种方案解决:npm WARN config global --global, --local are deprecated. Use --location=global instead.

    更换电脑硬盘后,重新安装开发软件。当安装node后进行验证, 执行npm命令告警: 1. --global , --local 被弃用删除,要求改为使用 --location=global 2. npm WARN logfile 告警则是因为对应目录没有权限,右键打开目录属性给与全部权限即可 以npm文件为例 这个警告官方在 npm 8.12.1 中得到了

    2024年02月13日
    浏览(34)
  • “You are not allowed to create a user with GRANT”错误出现原因及解决方法:

    一、出现原因:         8.0之后的mysql不支持 授权的时候就进行用户创建,所以创建 之后才能授权; 二、解决方法; 1、查看正在mysql登录状态的用户:select current_user;   2、创建新用户:create user \\\'用户名\\\'@\\\'localhost\\\' identified by \\\'123456\\\';        3、设置用户权限:grant all on

    2024年02月16日
    浏览(37)
  • 已解决:Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy

    安装了新版Android Studio,开始跑一个项目时,出了如下错误:Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy setting 意思是连接超时:连接。如果您在HTTP代理之后,请配置代理设置 看了网上的几种解决方案,都没有太适合的,于是自己在设置中,, 搞了

    2024年02月06日
    浏览(35)
  • 使用git config --global设置用户名和邮件,以及git config的全局和局部配置

    我们为什么要设置设置用户名和邮件? 我们在注册 github , gitlab 等时,一般使用用户名或邮箱: 这个用户名可以是你的姓名,也可以是你的手机号,或者其他字母拼成的字符串。 当你注册完成时,它会写入到 .git 账号中。你每次代码提交时,都会显示你的这个账号。 由于

    2024年02月05日
    浏览(47)
  • Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. You can try some of

    1、在 Terminal 上输入命令: gradlew app:dependencies --configuration releaseRuntimeClasspath ,执行了: Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.,翻译: Android Gradle插件需要Java 11才能运行。您目前正在使用Java 1.8。 解决问题:如何下载安装的JDK11       2、android studio

    2024年02月16日
    浏览(36)
  • 完美解决Error:Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy

    当你用Android studio 打开一个新项目(一般是下载的工程),可能会报错 Error:Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy settings either in IDE or Gradle. android 2.0以后,涌现该题目的缘由是as拜访... 当你用Android studio 打开一个新项目(一般是下载的工程),可能会

    2024年02月08日
    浏览(27)
  • git config的范围参数:local、global和system

    1、–local:这个参数用于指定配置项的作用范围是当前 Git 仓库。配置项将保存在当前 Git 仓库的 .git/config 文件中。这意味着配置项仅对当前仓库有效,不会影响其他 Git 仓库或全局配置。示例用法: 2、–global:使用这个参数可以设置全局范围的 Git 配置。配置项将保存在你

    2024年04月09日
    浏览(28)
  • overleaf报错:Sorry, we could not verify that you are not a robot. Please check that Google reCAPTCH

    overleaf登录遇到问题: 原因: 人机验证被拦截 解决方案: 1. 关闭代理服务器     有时候挂着VPN就关机的话,再开机就会默认打开代理服务器     在“设置→网络→代理”中关闭代理服务器即可 2. 换一个浏览器 3. 关闭广告拦截       若有下载广告拦截插件,则关闭插件即

    2024年01月16日
    浏览(48)
  • 【错误记录】Android Studio 编译报错 ( Android Gradle plugin requires Java 11 to run. You are currently using )

    使用 最新版本的 Android Studio 创建应用 , 并执行 , 报如下错误 : 当前使用的 JDK 版本是 1.8 , 将 JDK 升级为 11 版本 ; 先在指定目录 , 安装 JDK 工具 ; 选择 \\\" 菜单栏 | File | Settings \\\" 选项 , 在 \\\" Build, Execution , Deployment | Build Tools | Gradle \\\" 选项中 , 设置 刚才 安装的 JDK 即可 ; 编译通过

    2024年02月10日
    浏览(37)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包