我正在尝试配置我的
.gitignore
文件以从我的 Git 存储库中排除 node_modules
目录,但我不确定实现此目的的正确语法。我遇到了三种不同的选择,但不确定哪一种(如果有的话)是正确的方法:
/node_modules
.node_modules
.node_modules/
有人可以澄清哪些选项正确排除了
node_modules
目录,或者是否有其他方法可以在 .gitignore
中实现此目的?我正在寻找一种方法来确保 node_modules
不被 Git 跟踪,以避免我的存储库中出现不必要的文件。
我感谢您就此事提供的任何指导或见解。
使用node_modules或/node_modules都应该可以工作,也可以尝试查看node.gitignore,它会让你知道在项目中要忽略什么
node_modules
目录未隐藏。你应该能够做到node_modules