一、git命令运行时出现以下错误提示:
git add -A
fatal: detected dubious ownership in repository at 'D:/****/WWW/www.***.cc'
'D:/**/WWW/www.**.cc' is owned by:
'S-1-5-32-544'
but the current user is:
'S-1-5-21-4097290046-3821524887-*****-1001'
To add an exception for this directory, call:
git config --global --add safe.directory D:/***/WWW/www.**.cc
解决方法一:(不是根据原因)
git config --global --add safe.directory D:/***/WWW/www.**.cc
解决方法二:
1)原因:当从其它文件夹或文件包解压文件后,文件所属用户不是当前用户。
2)分析:
其中的 ‘S-1-5-32-544’是一个典型的 Windows 用户安全标识符 (SID)
3)查看
查看当前用户SID命令
wmic useraccount where name='USERNAME' get sid
USERNAME替换成自己的当前计算机用户名
查看当前文件夹的SID命令
whoami /user
查看当前文件夹的所属用户和安全标识符(SID)
CD
dir /Q
4) 解决办法:在Windows中更改文件或文件夹的所有权
文章来源:https://www.toymoban.com/news/detail-730399.html
文章来源地址https://www.toymoban.com/news/detail-730399.html
到了这里,关于git 常见错误解决的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!