namespace LibGit2Sharp { /// /// Values that could be specified for how closely to examine the /// working directory when getting submodule status. /// public enum SubmoduleIgnore { /// /// Reset to the last saved ignore rule. /// Reset = -1, /// /// Any change or untracked == dirty /// None = 1, /// /// Dirty if tracked files change /// Untracked = 2, /// /// Only dirty if HEAD moved /// Dirty = 3, /// /// Never dirty /// All = 4, } }