summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorStephen Finucane <stephenfinucane@hotmail.com>2016-09-04 15:12:12 +0100
committerStephen Finucane <stephenfinucane@hotmail.com>2016-09-07 21:09:01 +0100
commit6337d55e0cf480a2415eec48796fa6a8bde1cd95 (patch)
tree76632cd0056039e77d76a52a55b8c70303c1396e /.gitignore
parentee6512e0d8a1da08321e038ef9d7070e0d086798 (diff)
downloadpatchwork-6337d55e0cf480a2415eec48796fa6a8bde1cd95.tar
patchwork-6337d55e0cf480a2415eec48796fa6a8bde1cd95.tar.gz
gitignore: Don't ignore all hidden files
This allows the addition of some config files. Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore53
1 files changed, 29 insertions, 24 deletions
diff --git a/.gitignore b/.gitignore
index b3af3a4..7b8389d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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