git和github中关于权限被拒绝的警告

8iwquhpp  于 12个月前  发布在  Git
关注(0)|答案(1)|浏览(174)
$ 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仓库没有运行

vyswwuz2

vyswwuz21#

你正在测试的用户没有权限加载git仓库中的一些目录,这会导致git status错误。
您可以将权限授予您要使用git的用户,以访问这些文件夹。
或者您可以以管理员身份运行终端。
或者你可以将这些文件夹添加到.gitignore,提交并重试,通过:

git add .gitignore
git commit -m "Ignored some folders"
git status

字符串
但请确保在提交和获取状态之前正确添加了文件夹。

相关问题