Re: [PATCH] gitignore: Ignore python bytecode files

2023-06-28 Thread Daniel Kiper
On Wed, Jun 28, 2023 at 02:26:27AM -0500, Glenn Washburn wrote: > 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 Daniel ___

[PATCH] gitignore: Ignore python bytecode files

2023-06-28 Thread Glenn Washburn
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 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4064d3d1ec89..11fcecf5c40b 100644 ---