diff options
author | Randolph Sapp <rs@ti.com> | 2024-06-06 11:14:05 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2024-06-06 21:09:23 -0500 |
commit | 9214aec743d4cec6eb05561e605421356d283244 (patch) | |
tree | 87d0fd41dc6643ecee97c8664b9ae6c5444c3541 | |
parent | 835fe057a78288b8dd11d45e372638c514b1a382 (diff) | |
download | meta-ti-9214aec743d4cec6eb05561e605421356d283244.tar.gz |
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 <rs@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | .gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..ae174429 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,6 @@ | |||
1 | *.pyc | ||
2 | *.pyo | ||
3 | *.swp | ||
4 | *.orig | ||
5 | *.rej | ||
6 | *~ | ||