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
{{ message }}
This repository was archived by the owner on Feb 3, 2023. It is now read-only.
Stage() now respects ignore files by default, similar to git.git.
Users accustomed to the old behavior may use the new StageOptions
class (in particular the IncludeIgnored bool) to override this
behavior.
/// Promotes to the staging area the latest modifications of a collection of files in the working directory (addition, updation or removal).
178
+
///
179
+
/// Any paths (even those listed explicitly) that are ignored by configuration will not be staged unless <see cref="StageOptions.IncludeIgnored"/> is unset.
180
+
/// </summary>
181
+
/// <param name="paths">The collection of paths of the files within the working directory.</param>
182
+
/// <param name="stageOptions">If set, determines how paths will be staged.</param>
0 commit comments