namespace LibGit2Sharp
{
///
/// Specify the kind of committish which will be considered
/// when trying to identify the closest reference to the described commit.
///
public enum DescribeStrategy
{
///
/// Only consider annotated tags.
///
Default = 0,
///
/// Consider both annotated and lightweight tags.
///
/// This will match every reference under the refs/tags/ namespace.
///
///
Tags,
///
/// Consider annotated and lightweight tags, local and remote tracking branches.
///
/// This will match every reference under the refs/ namespace.
///
///
All,
}
}