We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
$ git branch
using (var repo = new Repository("path/to/your/repo")) { foreach(Branch b in repo.Branches.Where(b => !b.IsRemote)) { Console.WriteLine(string.Format("{0}{1}", b.IsCurrentRepositoryHead ? "*" : " ", b.Name)); } }