当前位置:   article > 正文

fatal detected dubious ownership in repository at解决办法_fatal: detected dubious ownership in repository at

fatal: detected dubious ownership in repository at

转自:noerror.net

问题描述
执行git submodule update --init --recursive更新子模块时报错:
  1. fatal: detected dubious ownership in repository at '/media/data/users/jhu3szh/serialize'
  2. To add an exception for this directory, call:
  3. git config --global --add safe.directory /media/data/users/jhu3szh/serialize
解决办法
因为git心的权限安全策略导致的报错,可以按提示把目录添加到信任列表
git config --global --add safe.directory /media/data/users/jhu3szh/serialize
如果仍有其他问题可以考虑把目录下的所有内容都添加到信任列表:
git config --global --add safe.directory "*"
另外如果是linux系统,请检查目录所属的用户、以及访问权限。如果目录所属用户不是当前用户可以使用命令切换:

chown -R <当前用户> <当前目录>
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/397115
推荐阅读
相关标签
  

闽ICP备14008679号