diff options
author | techknowlogick <techknowlogick@gitea.com> | 2025-07-15 00:26:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-14 21:26:16 -0700 |
commit | 990ae2bfa8ae951f7c566552a6da0bfba70c0334 (patch) | |
tree | 37e3d05a56d76be3195b6cf8d5bc05ddb47aa722 | |
parent | 4bad298cd73f50dade2fd2c896bbea14acefd18e (diff) | |
download | gitea-990ae2bfa8ae951f7c566552a6da0bfba70c0334.tar.gz gitea-990ae2bfa8ae951f7c566552a6da0bfba70c0334.zip |
Add gitignore rules to exclude LLM instruction files (#35076)
Similar to how we have ignores for other tooling (eg vscode & IntelliJ)
we shouldn’t include these files in our repo. If they get added then
we’d have to maintain them and keep them up to date, and personally
there are too many tools to do that for.
-rw-r--r-- | .gitignore | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 0791a17c71..fc2d74a33a 100644 --- a/.gitignore +++ b/.gitignore @@ -109,3 +109,15 @@ prime/ # Manpage /man + +# Ignore AI/LLM instruction files +/.claude/ +/.cursorrules +/.cursor/ +/.goosehints +/.windsurfrules +/.github/copilot-instructions.md +/AGENT.md +/CLAUDE.md +/llms.txt + |