From da7c027f1c3ccc5ef819da9ffaf04157b03d8aa8 Mon Sep 17 00:00:00 2001 From: Romain Porte Date: Sat, 11 Nov 2017 19:02:12 +0100 Subject: [PATCH] Improved gitignores for patch submitting In order to ease the patch submitting process, *.patch was added as per Linux kernel's .gitignore. Test cache directory was also added in its own gitignore (as per kernel's recommendation on .gitignore location). --- .gitignore | 1 + mediagoblin/tests/.gitignore | 1 + 2 files changed, 2 insertions(+) create mode 100644 mediagoblin/tests/.gitignore diff --git a/.gitignore b/.gitignore index c4a1497f..4eb61d66 100644 --- a/.gitignore +++ b/.gitignore @@ -50,6 +50,7 @@ *~ *.swp *.mo +*.patch # The legacy of buildout .installed.cfg diff --git a/mediagoblin/tests/.gitignore b/mediagoblin/tests/.gitignore new file mode 100644 index 00000000..16d3c4db --- /dev/null +++ b/mediagoblin/tests/.gitignore @@ -0,0 +1 @@ +.cache -- 2.25.1