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