oe-selftest leaves python bytecode around for the selftests it has found making git status dirty.
Add .gitignore that hides those files from git. While we're at it, ignore some other common patterns too. Signed-off-by: Mikko Ylinen <[email protected]> --- .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 +*~ -- 2.11.0 -- _______________________________________________ meta-intel mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-intel
