using System; namespace LibGit2Sharp { /// /// Options controlling Checkout behavior. /// [Flags] public enum CheckoutModifiers { /// /// No checkout flags - use default behavior. /// None = 0, /// /// Proceed with checkout even if the index or the working tree differs from HEAD. /// This will throw away local changes. /// Force, } }