From 0fa6060ea5576adbf76e8066ce797b1df53f375b Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 27 Jun 2022 12:42:42 +0100 Subject: [PATCH] .gitignore: Ignore __pycache__ directories anywhere in the tree The Meson build system adds several Python scripts, some of which import code from other Python scripts, which will result in __pycache__ directories appearing in the source tree. Signed-off-by: Simon McVittie --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 72923bda0..e16b972ef 100644 --- a/.gitignore +++ b/.gitignore @@ -48,5 +48,6 @@ file*.lst .libs/ Makefile Makefile.in +__pycache__/ cscope.out tags -- 2.47.3