jzoss / libgitflow2sharp

Apache License 2.0
3 stars 1 forks source link

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");
}