Skip to content
nulltoken edited this page May 25, 2011 · 8 revisions

git-tag

Listing all tags

Git

$ git tag

LibGit2Sharp

using (var repo = new Repository("path/to/your/repo"))
{
    foreach (Tag t in repo.Tags)
    {
        Console.WriteLine(t.Name);
    }
}
Clone this wiki locally