From 6eb35a2c40942c082fc1adf71d79db31f125975a 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) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2d02777469b..7e281c6a0d2 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ Thumbs.db __pycache__ .mypy_cache *.SYMDEF* +a.out log tags -- GitLab