$ git status
warning: could not open directory '$RECYCLE.BIN/S-1-5-18/': Permission denied
warning: could not open directory '$RECYCLE.BIN/S-1-5-21-1320611954-3689187021-1978721250-1002/': Permission denied
warning: could not open directory 'System Volume Information/': Permission denied
字符串
在分支干线上
还没有提交
Untracked files:
(use "git add <file>..." to include in what will be committed)
型
我的git仓库没有运行
1条答案
按热度按时间vyswwuz21#
你正在测试的用户没有权限加载git仓库中的一些目录,这会导致
git status
错误。您可以将权限授予您要使用git的用户,以访问这些文件夹。
或者您可以以管理员身份运行终端。
或者你可以将这些文件夹添加到.gitignore,提交并重试,通过:
字符串
但请确保在提交和获取状态之前正确添加了文件夹。