From bbd0265f2efbf87a05cba1106f4156ed71245507 Mon Sep 17 00:00:00 2001 From: DocW Date: Sun, 1 Feb 2026 14:13:52 -0500 Subject: [PATCH] Allow files in .vscode/ to be included in Git repo Allow the exclusion of files in the `.vscode/` directory to be overridden via negated patterns (gitignore patterns beginning with `!`) by changing the pattern in `.gitignore` from `.vscode/` to `.vscode/*` (i.e., by ignoring the files in `.vscode/` rather than the `.vscode/` directory itself). --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b7256e4..f81ceb8 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,7 @@ bin/ /.nb-gradle/ # VS Code -.vscode/ +.vscode/* # Mac OS .DS_Store