在git bash中,我使用以下命令忽略了node_modules文件夹:
git config --global core.excludesfile ~/.gitignore
然后使用命令git status
和git add .
都不起作用
并收到此消息:
warning: unable to access 'node_modules': Permission denied
fatal: cannot use node_modules as an exclude file
有没有办法取消忽略被忽略的文件夹?我尝试了什么:
删除当前的node_modules文件夹,然后创建新的文件夹并粘贴相同的内容。然后git status
仍会收到相同的消息。
命令rm -rf .git
然后重新创建git repo git init
仍然会收到致命的消息。
命令rm -rf .gitignore
。仍然得到致命的消息。
=== 更新
我找到了一个删除错误消息的答案here。
对于像我这样的新手,一篇解释如何使用gitignore的文章Ignoring files