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-11 13:49:52 +0100 |
commit | d411e7738de9b005003fdf73d9b5605874886a74 (patch) | |
tree | 13a446d1fa6a5e3cbf69c2074e6a194319e4b7ee /.gitignore | |
parent | abcc43634a089b67626c02662a7a3a3d54f0b8a7 (diff) | |
download | poky-d411e7738de9b005003fdf73d9b5605874886a74.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: f9c2d97d549e848127b741b967d90288c60f4d43)
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 7f9f082929..688acec64f 100644 --- a/.gitignore +++ b/.gitignore | |||
@@ -1,6 +1,7 @@ | |||
1 | bitbake | 1 | bitbake |
2 | *.pyc | 2 | *.pyc |
3 | *.pyo | 3 | *.pyo |
4 | /*.patch | ||
4 | build*/conf/local.conf | 5 | build*/conf/local.conf |
5 | build*/conf/bblayers.conf | 6 | build*/conf/bblayers.conf |
6 | build*/downloads | 7 | build*/downloads |