From d10927b687858224558dbe0f10f5c57b4139ad96 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 PR-URL: https://github.com/nodejs/node/pull/31565 Reviewed-By: Anna Henningsen Reviewed-By: David Carlier Reviewed-By: James M Snell Reviewed-By: Rich Trott --- .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*