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
113
/// <para>
85
114
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
86
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>
87
120
/// </summary>
88
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
121
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
89
122
/// <returns>An instance of <see cref="Configuration"/>.</returns>
90
123
publicstaticConfigurationBuildFrom(
91
124
stringrepositoryConfigurationFileLocation)
@@ -98,8 +131,12 @@ public static Configuration BuildFrom(
98
131
/// <para>
99
132
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
100
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>
101
138
/// </summary>
102
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
139
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
103
140
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
104
141
/// <returns>An instance of <see cref="Configuration"/>.</returns>
105
142
publicstaticConfigurationBuildFrom(
@@ -114,8 +151,12 @@ public static Configuration BuildFrom(
114
151
/// <para>
115
152
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
116
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>
117
158
/// </summary>
118
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
159
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
119
160
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
120
161
/// <param name="xdgConfigurationFileLocation">Path to a XDG configuration file. If null, the default path for a XDG configuration file will be probed.</param>
121
162
/// <returns>An instance of <see cref="Configuration"/>.</returns>
@@ -132,8 +173,12 @@ public static Configuration BuildFrom(
132
173
/// <para>
133
174
/// Generally you want to access configuration via an instance of <see cref="Repository"/> instead.
134
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>
135
180
/// </summary>
136
-
/// <param name="repositoryConfigurationFileLocation">Path to a Repository configuration file.</param>
181
+
/// <param name="repositoryConfigurationFileLocation">Path to an existing Repository configuration file.</param>
137
182
/// <param name="globalConfigurationFileLocation">Path to a Global configuration file. If null, the default path for a Global configuration file will be probed.</param>
138
183
/// <param name="xdgConfigurationFileLocation">Path to a XDG configuration file. If null, the default path for a XDG configuration file will be probed.</param>
139
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