在Sourcetree中,由于要更新节点模块,所以我有1350个未暂存的文件。我不希望它跟踪节点模块。
在.gitignore
中,我有节点模块,请参见:
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
/dist
/tmp
/out-tsc
# dependencies
/node_modules
# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
# System Files
.DS_Store
Thumbs.db
我不知道为什么它仍然在gitignore中跟踪节点模块
答案 0 :(得分:0)
我认为/node_modules
条目使git只忽略根目录中的modules文件夹。您的代码位于“代码”目录中,而不是在根目录中。
尝试仅使用node_modules
。