Actions
Patch #41287
closedAdd .vscode to svn:ignore, .gitignore, and .hgignore
Description
This patch adds the .vscode directory to the .gitignore file. The .vscode directory is automatically created by Visual Studio Code and contains user-specific IDE settings. For a developer like me who uses VSCode for Redmine development, it is inconvenient to track these files in version control.
The .gitignore file already includes configuration settings for RubyMine (Patch #24523: Source: ignore .idea), so it makes sense to include VSCode settings as well.
diff --git a/.gitignore b/.gitignore
index ec4a91071..444173c3b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
/.project
/.idea
+/.vscode
/.loadpath
/.powrc
/.rvmrc
Actions