From: Stephen Finucane Date: Sun, 4 Sep 2016 14:12:12 +0000 (+0100) Subject: gitignore: Don't ignore all hidden files X-Git-Tag: v2.0.0-rc1~249 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6337d55e0cf480a2415eec48796fa6a8bde1cd95;p=thirdparty%2Fpatchwork.git gitignore: Don't ignore all hidden files This allows the addition of some config files. Signed-off-by: Stephen Finucane --- diff --git a/.gitignore b/.gitignore index b3af3a48..7b8389d1 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