From 7e32cbf30352e12c55c3c378631f4e238cf682c5 Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Fri, 8 Jun 2012 12:10:57 -0400 Subject: [PATCH] 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 Signed-off-by: Paul Gortmaker Signed-off-by: Richard Purdie --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 04e36c5f5d..f8db092989 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.pyc *.pyo +/*.patch build*/conf/local.conf build*/conf/bblayers.conf build*/downloads -- 2.40.1