diff options
author | Stephen Finucane <stephenfinucane@hotmail.com> | 2016-09-04 15:12:12 +0100 |
---|---|---|
committer | Stephen Finucane <stephenfinucane@hotmail.com> | 2016-09-07 21:09:01 +0100 |
commit | 6337d55e0cf480a2415eec48796fa6a8bde1cd95 (patch) | |
tree | 76632cd0056039e77d76a52a55b8c70303c1396e /.gitignore | |
parent | ee6512e0d8a1da08321e038ef9d7070e0d086798 (diff) | |
download | patchwork-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-- | .gitignore | 53 |
1 files changed, 29 insertions, 24 deletions
@@ -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 |