From 4cd09e79906f64a773eb3c76fd9ae9427de96d2a Mon Sep 17 00:00:00 2001 From: Gabriel Ravier Date: Thu, 2 May 2019 16:21:55 +0200 Subject: [PATCH 1/2] Added VSCode support to .gitignore --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 4dd1e798..ac01efa1 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,12 @@ msvc2003/Debug msvc2003/Release msvc2003/Debug (Japanese) msvc2003/Release (Japanese) + +# Exclude VSCode folder +.vscode/* + +# Do not exclude common files that we might actually add in the future (could be used for having build commands or the like) +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json From c697a9b8b21ddd5af49fb6efa97f7f8e585a6048 Mon Sep 17 00:00:00 2001 From: Gabriel Ravier Date: Thu, 2 May 2019 19:02:01 +0200 Subject: [PATCH 2/2] Corrected unclear comment --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ac01efa1..c149781e 100644 --- a/.gitignore +++ b/.gitignore @@ -23,10 +23,10 @@ msvc2003/Release msvc2003/Debug (Japanese) msvc2003/Release (Japanese) -# Exclude VSCode folder +# Exclude VS Code folder .vscode/* -# Do not exclude common files that we might actually add in the future (could be used for having build commands or the like) +# Useful for VS Code users !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json