From dcd072a2b56fa5698f1b528f82286614255f3bbe Mon Sep 17 00:00:00 2001 From: Miccah Date: Mon, 14 Jun 2021 11:08:48 -0500 Subject: [PATCH] .gitignore: do not ignore top level binaries to make garbage file cleanup easier (#10457) --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0818b973fd..0ac4ad20c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ -# ignore all build binaries -* +# ignore sub-level build binaries and v binary +*/**/* +v !*/ !*.* *.exe