From 93b587cd9c73415280b2c8f6aac596dc1d274743 Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Tue, 10 Mar 2026 00:03:22 -0600 Subject: [PATCH] Fix .gitignore to exclude user-specific files - Remove tracked .idea/vcs.xml (user-specific VCS settings) - Use whitelist approach for .idea/ directory (consistent with backend) - Improve log file patterns (*.log) - Remove redundant .idea/workspace.xml pattern (covered by wildcard) --- .gitignore | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 4fa34a7c..3062bff3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,10 +5,10 @@ target/ .kotlin ### IntelliJ IDEA ### -.idea/modules.xml -.idea/jarRepositories.xml -.idea/compiler.xml -.idea/libraries/ +.idea/* +!.idea/runConfigurations/ +!.idea/encodings.xml +!.idea/misc.xml *.iws *.iml *.ipr @@ -40,7 +40,7 @@ build/ ## Database related connectionpetstore.properties -.idea/workspace.xml # Log files +*.log log.txt