diff options
author | Romain Porte <microjoe@microjoe.org> | 2017-11-11 19:02:12 +0100 |
---|---|---|
committer | Boris Bobrov <breton@cynicmansion.ru> | 2017-11-12 00:07:47 +0300 |
commit | da7c027f1c3ccc5ef819da9ffaf04157b03d8aa8 (patch) | |
tree | e8dc813d41477546ca9e9ab9480dd9abd234a0c8 | |
parent | 8b48db61d1d5ef99e5065f5398e900a63eb26372 (diff) | |
download | mediagoblin-da7c027f1c3ccc5ef819da9ffaf04157b03d8aa8.tar.lz mediagoblin-da7c027f1c3ccc5ef819da9ffaf04157b03d8aa8.tar.xz mediagoblin-da7c027f1c3ccc5ef819da9ffaf04157b03d8aa8.zip |
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).
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | mediagoblin/tests/.gitignore | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -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 |