This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c13fa985c [hotfix] Reorganize .gitignore for better readability and 
add AI assistant entries (#7294)
0c13fa985c is described below

commit 0c13fa985c6ee938a7c2ce21d51f714c67b3858f
Author: Zouxxyy <[email protected]>
AuthorDate: Wed Feb 25 20:09:48 2026 +0800

    [hotfix] Reorganize .gitignore for better readability and add AI assistant 
entries (#7294)
    
    Reorganize .gitignore by grouping entries into clear categories (OS,
    IDE, AI Assistants, Java/Maven, Python, Native build artifacts, Misc)
    with sub-comments and alphabetical ordering within each section. Also
    add .claude, .cursor, .qoder to ignore AI assistant config directories.
---
 .gitignore | 51 ++++++++++++++++++++++++++++++++-------------------
 1 file changed, 32 insertions(+), 19 deletions(-)

diff --git a/.gitignore b/.gitignore
index 3f42fdc44a..eed4930b49 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,39 +1,52 @@
-.cache
-.classpath
+### OS ###
+.DS_Store
+
+### IDE ###
+# IntelliJ IDEA
 .idea/*
 !.idea/vcs.xml
 !.idea/icon.png
+*.iml
+*.ipr
+*.iws
+paimon-lucene/.idea/
+paimon-python/.idea/
+# VS Code
+.vscode/
+# Eclipse
+.classpath
 .metadata
-.settings
 .project
+.settings
+
+### AI Assistants ###
+.claude
+.cursor
+.qoder
+
+### Java / Maven ###
 target
-.version.properties
+dependency-reduced-pom.xml
+metastore_db/
 *.class
-*.iml
-*.swp
 *.jar
 !**/resources/**/*.jar
 *.log
-*.pyc
-*.ipr
-*.iws
 .java-version
-dependency-reduced-pom.xml
-metastore_db/
-paimon-python/.idea/
+.version.properties
+
+### Python ###
+*.pyc
 paimon-python/dist/
 paimon-python/*.egg-info/
 paimon-python/dev/log
-paimon-lucene/.idea/
-
-### VS Code ###
-.vscode/
-
-### Mac OS ###
-.DS_Store
 
 ### Native build artifacts ###
 paimon-faiss/paimon-faiss-jni/build/
 paimon-faiss/paimon-faiss-jni/src/main/resources/darwin*
 paimon-faiss/paimon-faiss-jni/src/main/resources/linux*
 paimon-faiss/paimon-faiss-jni/src/main/native/cmake-build-debug/
+
+### Misc ###
+*.swp
+.cache

Reply via email to