]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
gitignore: Don't ignore all hidden files
authorStephen Finucane <stephenfinucane@hotmail.com>
Sun, 4 Sep 2016 14:12:12 +0000 (15:12 +0100)
committerStephen Finucane <stephenfinucane@hotmail.com>
Wed, 7 Sep 2016 20:09:01 +0000 (21:09 +0100)
This allows the addition of some config files.

Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>
.gitignore

index b3af3a480d81f7fa525fa35909d855534161518e..7b8389d15ef1085a29686409e7af59a75d1df294 100644 (file)
@@ -1,39 +1,44 @@
-#
-# NOTE! Don't add files that are generated in specific
-# subdirectories here. Add them in the ".gitignore" file
-# in that subdirectory instead.
-#
-# Normal rules
-#
-.*
-*.pyc
-*.patch
-*~
-\#*\#
-
-#
-# Top-level generic files
-#
-tags
-TAGS
-!.gitignore
-
-# configuration files
-patchwork/settings/production.py
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
 
 # stgit generated dirs
 patches-*
 
-# quilt's files
+# CTag
+tags
+TAGS
+
+# quilt files
 /patches
 /series
 
+# patch files
+*.patch
+*.diff
+
 # cscope files
 cscope.*
 
 *.orig
 *.rej
 
-# test artifacts
+*~
+\#*\#
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+
+# Django stuff:
+*.log
+
+# Selenium test artifacts
 /selenium.log
 /selenium_screenshots
+
+# Patchwork configuration files
+patchwork/settings/production.py