namespace LibGit2Sharp { /// /// Describe the expected tag retrieval behavior /// when a fetch operation is being performed. /// public enum TagFetchMode { /// /// Default behavior. Will automatically retrieve tags that /// point to objects retrieved during this fetch. /// Auto = 0, // GIT_REMOTE_DOWNLOAD_TAGS_AUTO /// /// No tag will be retrieved. /// None, // GIT_REMOTE_DOWNLOAD_TAGS_NONE /// /// All tags will be downloaded, but _only_ tags, along with /// all the objects these tags are pointing to. /// All, // GIT_REMOTE_DOWNLOAD_TAGS_ALL } }