From: Paul Gortmaker <[email protected]> To support the basic workflow of trivial patches:
git format-patch HEAD~.. ; git send-email --to [email protected] 0001-foo.patch We don't want git status reporting on patches lying in the top level dir in this case. Cc: Richard Purdie <[email protected]> Signed-off-by: Paul Gortmaker <[email protected]> Signed-off-by: Richard Purdie <[email protected]> --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 04e36c5..f8db092 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.pyc *.pyo +/*.patch build*/conf/local.conf build*/conf/bblayers.conf build*/downloads -- 1.7.9.5 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
