This is an automated email from the ASF dual-hosted git repository.
He-Pin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko.git
The following commit(s) were added to refs/heads/main by this push:
new 4176bf421c build: ignore local AI assistant workspace files (#2913)
4176bf421c is described below
commit 4176bf421ccafe8d6a4daf94e881ad483f3a3526
Author: He-Pin(kerr) <[email protected]>
AuthorDate: Tue Apr 28 13:15:55 2026 +0800
build: ignore local AI assistant workspace files (#2913)
Motivation:
Local AI assistant workspace directories can appear as untracked files
while working on the project and should not be accidentally included in
unrelated changes.
Modification:
- Add .gitignore entries for common local AI assistant workspace
directories and files.
Result:
Local .claude, .cursor, .kiro, and similar AI assistant workspace files
stay out of the git working tree by default.
Tests:
- git check-ignore -v .claude .cursor .kiro
- git diff --check
References:
- N/A (local workspace ignore-list cleanup)
---
.gitignore | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/.gitignore b/.gitignore
index 1561267507..c7b7728870 100644
--- a/.gitignore
+++ b/.gitignore
@@ -103,3 +103,13 @@ native/
.tmp
+# Local AI assistant workspace files
+.agents/
+.aider*
+.claude/
+.codex/
+.continue/
+.cursor/
+.gemini/
+.kiro/
+.windsurf/
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]