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)
This commit is contained in:
10
.gitignore
vendored
10
.gitignore
vendored
@@ -5,10 +5,10 @@ target/
|
|||||||
.kotlin
|
.kotlin
|
||||||
|
|
||||||
### IntelliJ IDEA ###
|
### IntelliJ IDEA ###
|
||||||
.idea/modules.xml
|
.idea/*
|
||||||
.idea/jarRepositories.xml
|
!.idea/runConfigurations/
|
||||||
.idea/compiler.xml
|
!.idea/encodings.xml
|
||||||
.idea/libraries/
|
!.idea/misc.xml
|
||||||
*.iws
|
*.iws
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
@@ -40,7 +40,7 @@ build/
|
|||||||
|
|
||||||
## Database related
|
## Database related
|
||||||
connectionpetstore.properties
|
connectionpetstore.properties
|
||||||
.idea/workspace.xml
|
|
||||||
|
|
||||||
# Log files
|
# Log files
|
||||||
|
*.log
|
||||||
log.txt
|
log.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user