From 09ee1c0b9c41d4a4887b975d736063d3b5016278 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser <albrechts.fltk@online.de> Date: Tue, 2 Jun 2020 14:41:15 +0200 Subject: [PATCH] (Git) ignore .vscode folder The "Visual Studio Code" editor (Open Source by Microsoft) is becoming more and more popular. It uses a (hidden) folder '.vscode' in the workspace root directory to store its configurations. We need to ignore this folder to avoid confusing developers and checking it in by accident. See https://github.com/Microsoft/vscode --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 5ba09e86b..3d1cfe982 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,9 @@ etc/FLTKConfig.cmake *.tlog .vs/ +# VS Code (Visual Studio Code) Editor +.vscode/ + # / /autom4te*.cache /build -- GitLab