From 0be6abc7f21eed368d496699b72165d5bb1e9909 Mon Sep 17 00:00:00 2001 From: Cheng Shao <terrorjack@type.dance> Date: Wed, 21 Aug 2024 20:21:54 +0200 Subject: [PATCH] git: remove a.out and include it in .gitignore a.out is a configure script byproduct. It was mistakenly checked into the tree in !13118. This patch removes it, and include it in .gitignore to prevent a similar error in the future. (cherry picked from commit f0408eeb41286561d76d206a1f07cfe6b7c53d37) (cherry picked from commit 8abb0f19556cb2e2fd1118db2ac3989474d73da5) (cherry picked from commit 1e8521266cbf5d66dba77618c755a2e5f8ba4f0c) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index bbd838a79ff..dd4257f992b 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ Thumbs.db __pycache__ .mypy_cache *.SYMDEF* +a.out log tags -- GitLab