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.
84
117
/// <para>
85
118
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
86
119
/// </para>
120
+
/// <para>
121
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
122
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
123
+
/// </para>
87
124
/// </summary>
88
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
125
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
89
126
/// <returns>An instance of <see cref="Configuration"/>.</returns>
90
127
publicstaticConfigurationBuildFrom(
91
128
stringrepositoryConfigurationFileLocation)
@@ -98,8 +135,12 @@ public static Configuration BuildFrom(
98
135
/// <para>
99
136
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
100
137
/// </para>
138
+
/// <para>
139
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
140
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
141
+
/// </para>
101
142
/// </summary>
102
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
143
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
103
144
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
104
145
/// <returns>An instance of <see cref="Configuration"/>.</returns>
105
146
publicstaticConfigurationBuildFrom(
@@ -114,8 +155,12 @@ public static Configuration BuildFrom(
114
155
/// <para>
115
156
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
116
157
/// </para>
158
+
/// <para>
159
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
160
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
161
+
/// </para>
117
162
/// </summary>
118
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
163
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
119
164
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
120
165
/// <param name="xdgConfigurationFileLocation">Path to a XDG configuration file. If null, the default path for a XDG configuration file will be probed.</param>
121
166
/// <returns>An instance of <see cref="Configuration"/>.</returns>
@@ -132,8 +177,12 @@ public static Configuration BuildFrom(
132
177
/// <para>
133
178
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
134
179
/// </para>
180
+
/// <para>
181
+
/// <paramref name="repositoryConfigurationFileLocation"/> can either contains a path to a file or a directory. In the latter case,
182
+
/// this can be the working directory, the .git directory or the directory containing a bare repository.
183
+
/// </para>
135
184
/// </summary>
136
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
185
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
137
186
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
138
187
/// <param name="xdgConfigurationFileLocation">Path to a XDG configuration file. If null, the default path for a XDG configuration file will be probed.</param>
139
188
/// <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