diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-06-08 12:10:57 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-14 11:23:49 +0100 |
commit | 71a6fb605ad28788e27d59a380c7f1377feb6c3b (patch) | |
tree | 8f4260ebf0b59c7edc6a37b1e67a5f18db23b5cd /.gitignore | |
parent | bfc8589048ac5c3c1e02c6d518e07164de6f5ac9 (diff) | |
download | poky-71a6fb605ad28788e27d59a380c7f1377feb6c3b.tar.gz |
gitignore: add wildcard to match toplevel patch files
To support the basic workflow of trivial patches:
git format-patch HEAD~.. ; git send-email --to foo@bar.com 0001-foo.patch
We don't want git status reporting on patches lying in the top
level dir in this case.
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
(From OE-Core rev: 7e32cbf30352e12c55c3c378631f4e238cf682c5)
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 04e36c5f5d..f8db092989 100644 --- a/.gitignore +++ b/.gitignore | |||
@@ -1,5 +1,6 @@ | |||
1 | *.pyc | 1 | *.pyc |
2 | *.pyo | 2 | *.pyo |
3 | /*.patch | ||
3 | build*/conf/local.conf | 4 | build*/conf/local.conf |
4 | build*/conf/bblayers.conf | 5 | build*/conf/bblayers.conf |
5 | build*/downloads | 6 | build*/downloads |