全局忽略后如何取消忽略文件夹?

时间:2018-06-11 06:26:45

标签: bash git gitignore

在git bash中,我使用以下命令忽略了node_modules文件夹:

git config --global core.excludesfile ~/.gitignore

然后使用命令git statusgit add .都不起作用

并收到此消息:

warning: unable to access 'node_modules': Permission denied
fatal: cannot use node_modules as an exclude file

有没有办法取消忽略被忽略的文件夹?我尝试了什么:

  1. 删除当前的node_modules文件夹,然后创建新的文件夹并粘贴相同的内容。然后git status仍会收到相同的消息。

  2. 命令rm -rf .git然后重新创建git repo git init仍然会收到致命的消息。

  3. 命令rm -rf .gitignore。仍然得到致命的消息。

  4. === 更新

    我找到了一个删除错误消息的答案here

    对于像我这样的新手,一篇解释如何使用gitignore的文章Ignoring files

0 个答案:

没有答案