using System; namespace LibGit2Sharp { /// /// Options controlling Stash behavior. /// [Flags] public enum StashModifiers { /// /// Default /// Default = 0, /// /// All changes already added to the index /// are left intact in the working directory /// KeepIndex = (1 << 0), /// /// All untracked files are also stashed and then /// cleaned up from the working directory /// IncludeUntracked = (1 << 1), /// /// All ignored files are also stashed and then /// cleaned up from the working directory /// IncludeIgnored = (1 << 2), } }