/libgitflow2sharp

Primary LanguageC#Apache License 2.0Apache-2.0

Extension methods for GitFlow using 100% libgit2sharp

The concept is to add all the GitFlow commands to Libgit2Sharp. There is no need to install the GitFlow extensions for this to work.

Usage:

using (var repo = new Repository(pathtorepo))
{
     repo.Flow().StartFeature("featurename");
}