Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 352 Bytes

File metadata and controls

17 lines (10 loc) · 352 Bytes

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