Skip to content

Commit be61222

Browse files
committed
fix settings in web.config file
1 parent 06cb892 commit be61222

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Diff for: GitTools.WebApp/Web.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
</system.diagnostics>
7878
<appSettings>
7979
<add key="GitAuthenticationMode" value="None" />
80-
81-
<add key="GitBaseFolder" value="C:\Users\Eric\My Projects\gitweb\Git Repos" />
80+
<add key="GitExePath" value="C:\Program Files (x86)\Git\bin\git.exe" />
81+
<add key="GitBaseFolder" value="E:\Git Repos" />
8282
</appSettings>
8383
</configuration>

Diff for: GitTools.WebSite/Web.config

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<appSettings>
4-
<add key="GitBaseFolder" value="C:\Users\Eric\My Projects\gitweb\Git Repos" />
5-
<!--<add key="GitAuthenticationMode" value="All" />-->
6-
<add key="GitExePath" value="C:\Program Files (x86)\Git\bin\git.exe" /><add key="GitBaseFolder" value="C:\Users\Public" /><!--<add key="GitAuthenticationMode" value="Push" />--></appSettings>
4+
<add key="GitAuthenticationMode" value="None" />
5+
<add key="GitExePath" value="C:\Program Files (x86)\Git\bin\git.exe" />
6+
<add key="GitBaseFolder" value="E:\Git Repos" />
7+
</appSettings>
78
<system.web>
89
<trace enabled="true" requestLimit="40" localOnly="false" />
910
<compilation debug="true" targetFramework="4.0">

0 commit comments

Comments
 (0)