From e7b14167efe9ac719a4d34f9d79c02248d572eb7 Mon Sep 17 00:00:00 2001 From: Peter Hoyes Date: Wed, 3 Aug 2022 14:38:00 +0100 Subject: [PATCH] Add a .gitignore file The oeqa code in meta-zephyr-core/lib/ generates __pycache__ files which pollute the development environment. Add a .gitignore file to automatically exclude these files from commits. Signed-off-by: Peter Hoyes Signed-off-by: Naveen Saini --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bee8a64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__