From e9c41d14b9ae9191e752fb4c2d4cd85aef74f9c2 Mon Sep 17 00:00:00 2001 From: Rudolf Byker Date: Fri, 2 Aug 2024 10:23:15 +0200 Subject: [PATCH] Bug 37556: Add project folders of popular IDEs to .gitignore Ignoring the .idea and .vscode folders makes working with the Koha repo using IntelliJ IDEA or VS Code easier. To test: 1. Clone the Koha repo. 2. Open the repo folder in an IDE like IntelliJ IDEA or VS Code. 3. Observe that the IDE creates an .idea or .vscode folder but does not try to commit it. Sponsored-by: Reformational Study Centre Signed-off-by: Pedro Amorim --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index f237596062..57d67e052e 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,7 @@ how-to.pl koha-tmpl/intranet-tmpl/prog/en/modules/how-to.tt misc/translator/po + +# IDEs +.idea +.vscode -- 2.39.2