本文主要是介绍解决Git报错:fatal: detected dubious ownership in repository at,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在通过 Git Bash
提交项目代码时输入 git add .
命令后,报错:fatal: detected dubious ownership in repository at
这是因为该项目的所有者与现在的用户不一致
比如说: 该项目的所有者是 Administrator
,而当前用户是 YuYang
, 那么就会导致上面的错误
解决的办法也很简单在 git bash
中输入
git config --global --add safe.directory "*"
这篇关于解决Git报错:fatal: detected dubious ownership in repository at的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!