Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Git status

Christopher McClellan edited this page Feb 14, 2015 · 4 revisions

git-status

Get repository status

Git

$ git status

LibGit2Sharp

using (var repo = new Repository("path/to/your/repo"))
{
    foreach (var item in repo.RetrieveStatus())
    {
        Console.WriteLine(item.FilePath);
    }
}
Clone this wiki locally