You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Access configuration values without a repository.
80
113
/// <para>
81
114
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
82
115
/// </para>
116
+
/// <para>
117
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
118
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
119
+
/// </para>
83
120
/// </summary>
84
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
121
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
85
122
/// <returns>An instance of <see cref="Configuration"/>.</returns>
86
123
publicstaticConfigurationBuildFrom(
87
124
stringrepositoryConfigurationFileLocation)
@@ -94,8 +131,12 @@ public static Configuration BuildFrom(
94
131
/// <para>
95
132
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
96
133
/// </para>
134
+
/// <para>
135
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
136
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
137
+
/// </para>
97
138
/// </summary>
98
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
139
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
99
140
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
100
141
/// <returns>An instance of <see cref="Configuration"/>.</returns>
101
142
publicstaticConfigurationBuildFrom(
@@ -110,8 +151,12 @@ public static Configuration BuildFrom(
110
151
/// <para>
111
152
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
112
153
/// </para>
154
+
/// <para>
155
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
156
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
157
+
/// </para>
113
158
/// </summary>
114
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
159
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
115
160
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
116
161
/// <param name="xdgConfigurationFileLocation">Path to a XDG configuration file. If null, the default path for a XDG configuration file will be probed.</param>
117
162
/// <returns>An instance of <see cref="Configuration"/>.</returns>
@@ -128,8 +173,12 @@ public static Configuration BuildFrom(
128
173
/// <para>
129
174
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
130
175
/// </para>
176
+
/// <para>
177
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
178
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
179
+
/// </para>
131
180
/// </summary>
132
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
181
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
133
182
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
134
183
/// <param name="xdgConfigurationFileLocation">Path to a XDG configuration file. If null, the default path for a XDG configuration file will be probed.</param>
135
184
/// <param name="systemConfigurationFileLocation">Path to a System configuration file. If null, the default path for a System configuration file will be probed.</param>
0 commit comments