* [PATCH] gitignore: add wildcard to match toplevel patch files
@ 2012-06-08 16:10 Paul Gortmaker
2012-06-11 12:51 ` Richard Purdie
0 siblings, 1 reply; 2+ messages in thread
From: Paul Gortmaker @ 2012-06-08 16:10 UTC (permalink / raw)
To: yocto
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>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitignore b/.gitignore
index 7f9f082..688acec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
bitbake
*.pyc
*.pyo
+/*.patch
build*/conf/local.conf
build*/conf/bblayers.conf
build*/downloads
--
1.7.9.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-06-11 12:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-08 16:10 [PATCH] gitignore: add wildcard to match toplevel patch files Paul Gortmaker
2012-06-11 12:51 ` Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.