From a53500e26baa974aa1cb56abae38cccf173d2498 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 e50393f003c5d1..e1703844e5d320 100644 --- a/.gitignore +++ b/.gitignore @@ -45,8 +45,8 @@ /config_fips.gypi # === Rules for MSVS artifacts === -/Debug -/Release +Debug/ +Release/ *.sln *.suo *.vcxproj*