From: Jannis Leidel Date: Wed, 10 Nov 2010 02:02:32 +0000 (+0100) Subject: Updating Django gitignore for various reasons X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F70%2Fhead;p=gitignore.git Updating Django gitignore for various reasons Removing: - static/uploaded/**/* since there is no default for upload paths (configurable) - *.mo because it's a best practice to keep them close to the po files and update before release - *.pyc since that's covered by the Python gitignore file Adding: - local_settings.py because it's a best practice for Django projects (next to settings.py) --- diff --git a/Django.gitignore b/Django.gitignore index 4be94cb1..7823eee6 100644 --- a/Django.gitignore +++ b/Django.gitignore @@ -1,7 +1,3 @@ -#for python/django *.log -static/uploaded/**/* -*.mo *.pot -*.pyc - +local_settings.py