We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
$ git ls-files --unmerged
using (var repo = new Repository("path/to/your/repo")) { foreach(IndexEntry e in repo.Index) { if (e.StageLevel == 0) { continue; } Console.WriteLine("{0} {1} {2} {3}", Convert.ToString((int)e.Mode, 8), e.Id.ToString(), (int)e.StageLevel, e.Path); } }