All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gitignore: Ignore python bytecode files
@ 2023-06-28  7:26 Glenn Washburn
  2023-06-28 12:44 ` Daniel Kiper
  0 siblings, 1 reply; 2+ messages in thread
From: Glenn Washburn @ 2023-06-28  7:26 UTC (permalink / raw)
  To: grub-devel, Daniel Kiper; +Cc: 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 <development@efficientek.com>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 4064d3d1ec89..11fcecf5c40b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,6 +16,7 @@
 *.o
 *.pf2
 *.pp
+*.pyc
 *.trs
 *~
 .deps-core/
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-28 12:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-28  7:26 [PATCH] gitignore: Ignore python bytecode files Glenn Washburn
2023-06-28 12:44 ` Daniel Kiper

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.