一、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
- 解决办法:在Windows中更改文件或文件夹的所有权
本文转载自: https://blog.csdn.net/lyb8010/article/details/131283482
版权归原作者 Robin罗兵 所有, 如有侵权,请联系我们删除。
版权归原作者 Robin罗兵 所有, 如有侵权,请联系我们删除。