This is an automated email from the ASF dual-hosted git repository.
hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new e5b074aa0 chore: refine .gitignore to remove useless entries (#3256)
e5b074aa0 is described below
commit e5b074aa04313dee32638a4822347f21f120e949
Author: Twice <[email protected]>
AuthorDate: Tue Nov 11 22:43:02 2025 +0800
chore: refine .gitignore to remove useless entries (#3256)
misc changes to make .gitignore look good.
---
.gitignore | 31 ++++++++++++++++++-------------
1 file changed, 18 insertions(+), 13 deletions(-)
diff --git a/.gitignore b/.gitignore
index cd2fd010b..e090a2c4c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,12 @@
*.gch
*.pch
+# Linker files
+*.ilk
+
+# Debugger Files
+*.pdb
+
# Compiled Dynamic libraries
*.so
*.dylib
@@ -31,19 +37,18 @@
*.out
*.app
-*.pyc
-*.swp
-*.swo
-.DS_Store
-version.h
+# debug information files
+*.dwo
-.idea
-.vscode
-.cache
+# for macOS
+.DS_Store
-compactdb
-testdb
+# for IDEs
+/.idea/
+/.vscode/
+/.cache/
-build
-cmake-build-*
-build-*
+# for build directories
+/build/
+/cmake-build-*/
+/build-*/