using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LibGit2Sharp { /// /// Indicates whether a refspec is a push refspec or a fetch refspec /// public enum RefSpecDirection { /// /// Indicates that the refspec is a fetch refspec /// Fetch, /// /// Indicates that the refspec is a push refspec /// Push } }