情况
在git bash中输入"git add ."命令时报错"fatal: detected dubious ownership in repository at"
原因
文件夹的所有者和现在的用户不一致
例如:文件夹的所有者是Administrator,而当前用户是myAccount
方法1
右键文件夹 -> 属性 -> 所有者 -> 更改 -> 勾选应用到所有子目录和文件 -> 应用
方法2(简便)
在git bash中输入
git config --global --add safe.directory "*"
标签:git,repository,dubious,detected,报错,fatal,bash From: https://www.cnblogs.com/live41/p/17290417.html