From fb1f8973732ea3b66c828e4c4c263cf8211aa447 Mon Sep 17 00:00:00 2001 From: Glenn Washburn Date: Wed, 28 Jun 2023 02:26:27 -0500 Subject: [PATCH] gitignore: Ignore python bytecode files Python bytecode files, which end in .pyc, may be generated by the build system as needed and should not go into the git repository. Signed-off-by: Glenn Washburn Reviewed-by: Daniel Kiper --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4064d3d1e..11fcecf5c 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ *.o *.pf2 *.pp +*.pyc *.trs *~ .deps-core/ -- 2.47.2