From 85eae6ba355e32ff5e9fb63ad0b295ff42ab15d8 Mon Sep 17 00:00:00 2001 From: jouyouyun Date: Mon, 20 Oct 2025 16:56:02 +0800 Subject: [PATCH] gitignore: add aider Aider is an open-source AI coding assistant. When used, it generates history, cache, and other files in the project. To prevent these files from being committed, you need to add .aider* to your .gitignore file --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 73ab928bb68..c5d98a4ece9 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ __pycache__/ .dir-locals-2.el .vscode/ /pkg/ +.aider* -- 2.47.3