This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch xiangfu0-patch-2 in repository https://gitbox.apache.org/repos/asf/pinot.git
commit a74f556a23a5777ee49c67550678b3346768f7bf Author: Xiang Fu <[email protected]> AuthorDate: Mon Feb 2 13:34:45 2026 -0800 Add more AI tooling working/tmp dir to .gitignore --- .gitignore | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1b3de1a0f5a..9ac97ac8341 100644 --- a/.gitignore +++ b/.gitignore @@ -62,4 +62,47 @@ kubernetes/helm/**/Chart.lock pinot-integration-tests/src/test/resources/udf-test-results/*.md !/pinot-integration-tests/src/test/resources/udf-test-results/README.md -tmp/ \ No newline at end of file +tmp/ + +# OpenAI / Codex / ChatGPT-style tools +.codex/ +.codex-cache/ +.openai/ +.openai-cache/ + +# Cursor +.cursor/ +.cursor-cache/ + +# GitHub Copilot +.copilot/ +.github/copilot/ +copilot-chat.log + +# Continue.dev +.continue/ +.continue-cache/ + +# Tabnine +.tabnine/ + +# Codeium +.codeium/ + +# Sourcegraph Cody +.cody/ + +# Ollama / local LLMs +.ollama/ +ollama/ + +# LM Studio +.lmstudio/ + +# HuggingFace caches +.huggingface/ +hf_cache/ + +# LangChain / LlamaIndex +.langchain/ +.llamaindex/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
