我从osx系统中删除了atom,重新安装了最新版本。 我在项目文件夹的根目录下有一个.gitignore文件:
我的设置| Core具有选中的设置“排除VCS忽略的路径”
我的config.cson具有:
"*":
core:
ignoredNames: [
"node_modules"
]
telemetryConsent: "no"
themes: [
"one-light-ui"
"atom-light-syntax"
]
editor:
fontSize: 13
"exception-reporting":
userId: "asdf"
"tree-view":
hideVcsIgnoredFiles: true
我重新启动了atom,但是仍然可以在文件夹树中看到node_modules以及.DS_Store文件等。
我的.gitignore有:
node_modules
node_modules/
build
.DS_Store
我在这里做什么错了?