From 7818644129de8d4d72965cdbd2882b982734ebe7 Mon Sep 17 00:00:00 2001 From: AAAkater <125126227+AAAkater@users.noreply.github.com> Date: Mon, 5 Jan 2026 20:22:35 +0800 Subject: [PATCH] Fix: add uv binary archive to ignored files (#12451) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### What problem does this PR solve? After I ran this command, ```bash uv run ./download_deps.py ``` a file was not ignored. ```bash ❯ git status On branch feat/ignore-uv Untracked files: (use "git add ..." to include in what will be committed) uv-x86_64-unknown-linux-gnu.tar.gz nothing added to commit but untracked files present (use "git add" to track) ``` Add this file name to `.gitignore` ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 11aa54493..22e78ccdd 100644 --- a/.gitignore +++ b/.gitignore @@ -44,6 +44,7 @@ cl100k_base.tiktoken chrome* huggingface.co/ nltk_data/ +uv-x86_64*.tar.gz # Exclude hash-like temporary files like 9b5ad71b2ce5302211f9c61530b329a4922fc6a4 *[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]* @@ -197,4 +198,4 @@ ragflow_cli.egg-info backup -.hypothesis \ No newline at end of file +.hypothesis