From 79f10d899855e0405d8701cfbd31d819506de300 Mon Sep 17 00:00:00 2001 From: ConorDavenport Date: Wed, 29 Jan 2020 12:01:09 +0000 Subject: [PATCH] build: ignore all the "Debug","Release" folders Since there're still many "Debug" and "Release" folders in "deps" and "tools", to make it more strict and totally ignore the generated obj files, ignore all the files/folders under them. Refs: https://github.com/nodejs/node/pull/27210 --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index db2597b042b84a..160b96f74a59ab 100644 --- a/.gitignore +++ b/.gitignore @@ -47,8 +47,8 @@ /config_fips.gypi # === Rules for MSVS artifacts === -/Debug -/Release +Debug/ +Release/ *.sln *.suo *.vcxproj*