From 86d7b198b29e934b7c7ecd4bfa104eb0f299f1fe Mon Sep 17 00:00:00 2001 From: Alexei Andreyev Date: Tue, 4 Aug 2015 10:36:21 +0100 Subject: [PATCH 1/4] Rename default config as example --- Arnie/App_Data/{Configuration.json => Configuration.json.example} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Arnie/App_Data/{Configuration.json => Configuration.json.example} (100%) diff --git a/Arnie/App_Data/Configuration.json b/Arnie/App_Data/Configuration.json.example similarity index 100% rename from Arnie/App_Data/Configuration.json rename to Arnie/App_Data/Configuration.json.example From 188e68ea85d6102235254576b383d87b90da028f Mon Sep 17 00:00:00 2001 From: Alexei Andreyev Date: Tue, 4 Aug 2015 10:38:51 +0100 Subject: [PATCH 2/4] Add the config file to ignore list to avoid attempts at local config being synced with main repo or reset (as happens with rsGit) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index bb2f7c1..4ea2f89 100644 --- a/.gitignore +++ b/.gitignore @@ -171,3 +171,6 @@ UpgradeLog*.htm # Microsoft Fakes FakesAssemblies/ + +# App config file +Arnie/App_Data/Configuration.json \ No newline at end of file From 8026ba3ceca7cdb89ec871315e96da2611944530 Mon Sep 17 00:00:00 2001 From: Alexei Andreyev Date: Tue, 4 Aug 2015 11:46:55 +0100 Subject: [PATCH 3/4] Add ignore for config file --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4ea2f89..614283e 100644 --- a/.gitignore +++ b/.gitignore @@ -173,4 +173,4 @@ UpgradeLog*.htm FakesAssemblies/ # App config file -Arnie/App_Data/Configuration.json \ No newline at end of file +Configuration.json \ No newline at end of file From e0f84ef3f0c304aae80e4af8a2ae81d399c7ff67 Mon Sep 17 00:00:00 2001 From: Alexei Andreyev Date: Tue, 4 Aug 2015 13:37:49 +0100 Subject: [PATCH 4/4] Add web.config ignore settings --- .gitignore | 3 ++- Arnie/{Web.config => Web.Default.config} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename Arnie/{Web.config => Web.Default.config} (100%) diff --git a/.gitignore b/.gitignore index 614283e..19f4843 100644 --- a/.gitignore +++ b/.gitignore @@ -173,4 +173,5 @@ UpgradeLog*.htm FakesAssemblies/ # App config file -Configuration.json \ No newline at end of file +Configuration.json +Arnie/Web.config \ No newline at end of file diff --git a/Arnie/Web.config b/Arnie/Web.Default.config similarity index 100% rename from Arnie/Web.config rename to Arnie/Web.Default.config