git fatal: detected dubious ownership in repository

这篇具有很好参考价值的文章主要介绍了git fatal: detected dubious ownership in repository。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

问题

fatal: detected dubious ownership in repository at,git,错误解决,git

分析

用户拥有者不对,怀疑是因为该仓库是在管理员权限下创建的,而此时是没有用管理员权限打开,所以显示拥有者不对。

解决办法

1. 按照提示

git config --global --add safe.directory C:/Users/wzq20/Desktop/ManifestProjectRoot/repoProjects/RoomIt/master/2022-10-31_19-53

2. 重新用管理员权限打开

fatal: detected dubious ownership in repository at,git,错误解决,git
可以正常使用了文章来源地址https://www.toymoban.com/news/detail-815582.html

到了这里,关于git fatal: detected dubious ownership in repository的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

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

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

相关文章

  • 执行git status命令时出现了“fatal: detected dubious ownership in repository“

    这个错误提示表示发现了版本库中存在可疑的所有权问题,即指定的目录\\\"E:/take_Class/Rust/MyRust\\\"的所有者与当前用户不匹配。 为了解决这个问题,Git提供了一个添加目录异常规则的方法,你可以按照下面的步骤进行操作: 1.打开命令行终端,并运行以下命令添加目录异常规则:

    2024年02月15日
    浏览(44)
  • git bash报错fatal: detected dubious ownership in repository at的解决方法

    文件夹的所有者和现在的用户不一致 例如:文件夹的所有者是Administrator,而当前用户是myAccount 右键文件夹 - 属性 - 所有者 - 更改 - 勾选应用到所有子目录和文件 - 应用 在git bash中输入 git config --global --add safe.directory “*”

    2024年02月16日
    浏览(38)
  • 运行报错(三)git bash报错fatal: detected dubious ownership in repository at

    在运行git 命令时,出现报错 “fatal: detected dubious ownership in repository at” 文件夹的所有者和现在的用户不一致 栗子: 文件夹的所有者是root,而当前用户是admin 方法一、 将文件夹的所有者 替换 成admin 将文件夹的所有者 添加 admin sudo -S setfacl -R -m u:switch_git:rwx ./ 方法二、 在g

    2024年02月05日
    浏览(43)
  • Git 安全警告修复手册:解决 `fatal: detected dubious ownership in repository at ` 问题 ️

    🌷🍁 博主猫头虎 带您 Go to New World.✨🍁 🦄 博客首页——猫头虎的博客🎐 🐳《面试题大全专栏》 文章图文并茂🦕生动形象🦖简单易学!欢迎大家来踩踩~🌺 🌊 《IDEA开发秘籍专栏》学会IDEA常用操作,工作效率翻倍~💐 🌊 《100天精通Golang(基础入门篇)》学会Golang语言

    2024年02月05日
    浏览(42)
  • fatal: detected dubious ownership in repository at ‘D:/‘之解决方法

    1、今天在学习git的时候出现这个错误: 2、执行下面代码即可: git config --global --add safe.directory \\\"*\\\";  

    2024年02月11日
    浏览(43)
  • 【异常错误】pycharm copilot 错误:detected dubious ownership in repository ****** is owned by: 修改后无显示

    今天在github git的时候,突然出现了这种问题,下面的框出的部分一直显示: detected dubious ownership in repository at \\\'D:/Pycharm_workspace/SBDD/1/FLAG\\\' \\\'D:/Pycharm_workspace/SBDD/1/FLAG\\\' is owned by: \\\'S-1-5-32-544\\\' but the current user is: \\\'S-1-5-21-4177494839-3217565356-2102511185-500\\\' To add an exception for this directory, call

    2024年01月16日
    浏览(51)
  • git 解决 “fatal: Could not read from remote repository.“

    现象 在使用Git将本地仓库推送到远程仓库的时候,发生了如下错误:“fatal: Could not read from remote repository.”   原因 出现这错误一般是以下两种原因: 客户端与服务端未生成 ssh key 客户端与服务端的ssh key不匹配 为解决以上问题,我们需要重新生成一次ssh key ,并重新配置一

    2024年02月09日
    浏览(42)
  • [git]报错fatal: ‘origin‘ does not appear to be a git repository Could not read from remote repository

    问题1:   fatal: \\\'origin\\\' does not appear to be a git repository fatal: Could not read from remote repository. 说明库是有的,但是没办法push。所以重新关联一下。 解决方法: 输入以下代码, 这是因为本地的分支没有和远程分支建立联系,需要执行以下代码就可以正常 push 了   问题2:   fatal:

    2024年02月09日
    浏览(54)
  • fatal: not a git repository (or any of the parent directories): .git

    小编遇到这样一个问题,当git clone 后,进行分支切换时,报错fatal: not a git repository (or any of the parent directories): .git 而且出现了分支无法查询到的情况下 解决方法:进去.git文件夹 再打开git终端, 如果直接在此处进行分支切换,会提示报错   输一下git branch -a 再回退到上一级

    2024年02月12日
    浏览(52)
  • git clone出现fatal: Could not read from remote repository解决办法

    在git clone一个项目时出现如下报错: (第一个选项,问你是否继续连接?输入yes然后回车) 通过报错信息可以看出,这是因为Github上没有本机的公钥导致的。 其中双引号中填自己Github注册账号用的邮箱地址。 点击回车,看到提示 说明:前三个冒号分别让你输入保存公钥的

    2023年04月15日
    浏览(84)

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

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

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

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

二维码1

领取红包

二维码2

领红包