From 6337d55e0cf480a2415eec48796fa6a8bde1cd95 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sun, 4 Sep 2016 15:12:12 +0100 Subject: [PATCH] gitignore: Don't ignore all hidden files This allows the addition of some config files. Signed-off-by: Stephen Finucane --- .gitignore | 53 +++++++++++++++++++++++++++++------------------------ 1 file changed, 29 insertions(+), 24 deletions(-) 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 -- 2.47.3