From a6ed320fd63144a352bf6c375df64a58898aad08 Mon Sep 17 00:00:00 2001 From: Trent Bartlem Date: Thu, 3 Dec 2015 17:52:18 +1000 Subject: [PATCH 1/4] Create .gitignore --- alliance_auth/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 alliance_auth/.gitignore diff --git a/alliance_auth/.gitignore b/alliance_auth/.gitignore new file mode 100644 index 00000000..7c24c40c --- /dev/null +++ b/alliance_auth/.gitignore @@ -0,0 +1,2 @@ +/settings.py +!/*.example From 206e923322d0cc4c3144e16d86ba1f80982317cb Mon Sep 17 00:00:00 2001 From: Trent Bartlem Date: Thu, 3 Dec 2015 17:58:41 +1000 Subject: [PATCH 2/4] Syntax highlighting in vim, github --- alliance_auth/settings.py.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/alliance_auth/settings.py.example b/alliance_auth/settings.py.example index 5719ba82..dda3f3bc 100755 --- a/alliance_auth/settings.py.example +++ b/alliance_auth/settings.py.example @@ -1,4 +1,5 @@ """ +vim: set filetype=python: Django settings for alliance_auth project. For more information on this file, see @@ -6,6 +7,7 @@ https://docs.djangoproject.com/en/1.6/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.6/ref/settings/ + """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) From dcd17e7df8e6c45f43f6aade41205a39e9191d6e Mon Sep 17 00:00:00 2001 From: Trent Bartlem Date: Thu, 3 Dec 2015 18:09:44 +1000 Subject: [PATCH 3/4] Create .gitattributes --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..8d3d1663 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.py.example linguist-language=Python From 586c4bf5cbcc28f44ccfd201fc6549897006ac20 Mon Sep 17 00:00:00 2001 From: Trent Bartlem Date: Thu, 3 Dec 2015 18:11:13 +1000 Subject: [PATCH 4/4] *.py.example files are Python --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 8d3d1663..9369413a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -*.py.example linguist-language=Python +*/*.py.example linguist-language=Python