したがって、LibGit2Sharp https://github.com/libgit2/libgit2sharpを使用すると、次のようにブランチをウォークスルーできます。
using (var repo = new Repository(@"path to .git"))
{
foreach (var branch in repo.Branches)
{
Debug.WriteLine(branch.Name);
}
}
しかし、現在/アクティブなブランチを取得するにはどうすればよいですか?