internal static IEnumerable <BranchInfo> GetAllBranchesByPrefix(this Flow gitFlow, GitFlowSetting setting)
        {
            var prefix = gitFlow.GetPrefixByBranch(setting);

            return(gitFlow.GetAllBranchesByPrefix(prefix));
        }
 public static IEnumerable <BranchInfo> GetAllFeatureBranches(this Flow gitFlow)
 {
     return(gitFlow.GetAllBranchesByPrefix(gitFlow.Prefix.Feature));
 }