You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 忽略整个文件夹(最常用)
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
.idea/
|
|
.vscode/
|
|
|
|
# 忽略特定路径的文件夹
|
|
logs/
|
|
temp/
|
|
cache/
|
|
|
|
# 忽略所有名为 xxx 的文件夹(无论在哪一层)
|
|
**/node_modules/
|
|
|
|
# 忽略根目录下的文件夹(不加斜杠会匹配所有层级)
|
|
/node_modules/ # 仅忽略根目录的 node_modules
|
|
node_modules/ # 忽略所有层级的 node_modules |