Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StageOptions.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e5d726085812e318f2adf6663a8ff6922995ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace LibGit2Sharp
{
    /// <summary>
    /// Options to define file staging behavior.
    /// </summary>
    public sealed class StageOptions
    {
        /// <summary>
        /// Stage ignored files. (Default = false)
        /// </summary>
        public bool IncludeIgnored { get; set; }

        /// <summary>
        /// If set, the passed paths will be treated as explicit paths.
        /// Use these options to determine how unmatched explicit paths
        /// should be handled. (Default = null)
        /// </summary>
        public ExplicitPathsOptions ExplicitPathsOptions { get; set; }
    }
}