From d99cb8f49ae2a48eed51e50dbd9dbba36119040f 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 --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index f237596..57d67e0 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.34.1