From e62ac223bdab0f22f3ade613b1b8a9c3b7089bc9 Mon Sep 17 00:00:00 2001 From: Randolph Sapp Date: Thu, 6 Jun 2024 11:14:05 -0500 Subject: gitignore: lift some sane defaults from others Lift the common parts of the top level gitignore from oe-core and meta-openembedded. This masks out temporary python files, intermediate artifacts, and unclean patch leftovers (.orig, .rej, etc). We're choosing to leave patches at the root of the project out of this as maintainer preference. Signed-off-by: Randolph Sapp Signed-off-by: Ryan Eatmon --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..ae174429 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*.pyc +*.pyo +*.swp +*.orig +*.rej +*~ -- cgit v1.2.3-54-g00ecf