Skip to content

Commit 49f2415

Browse files
author
Vova Kolmakov
committed
chore: remove IDE artifacts from version control
The repository had 9 `.idea/` files committed against intent, totaling ~7.5 MB — dominated by `.idea/CopilotChatHistory.xml` (7.4 MB of AI chat history). The previous `.gitignore` enumerated `.idea/X.xml` entries piecemeal, which let other IDE files (encodings.xml, misc.xml, vcs.xml, codeStyles/, etc.) slip in. This commit: - Replaces the piecemeal `.idea/X.xml` block with a blanket `.idea` ignore plus symmetric `out/` handling, mirroring the sister repo `lance-format/lance-spark`. - Runs `git rm --cached` on all 9 tracked `.idea/` files. They remain on disk for local IntelliJ use but are no longer under version control. IDE-level codestyle (`.idea/codeStyles/*.xml`) is removed intentionally: the planned Spotless + google-java-format adoption will be the single source of truth for formatting; a separate IDE codestyle in git would diverge over time.
1 parent fc3d064 commit 49f2415

10 files changed

Lines changed: 4 additions & 13492 deletions

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ target/
44
!**/src/test/**/target/
55

66
### IntelliJ IDEA ###
7-
.idea/modules.xml
8-
.idea/jarRepositories.xml
9-
.idea/compiler.xml
10-
.idea/libraries/
7+
.idea
118
*.iws
129
*.iml
1310
*.ipr
11+
out/
12+
!**/src/main/**/out/
13+
!**/src/test/**/out/
1414

1515
### Eclipse ###
1616
.apt_generated

.idea/.gitignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/CopilotChatHistory.xml

Lines changed: 0 additions & 13418 deletions
This file was deleted.

.idea/CopilotChatTabs.xml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.idea/MarsCodeWorkspaceAppSettings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)