GitCommands.GitModule.GetMergedBranches C# (CSharp) Method

GetMergedBranches() public method

public GetMergedBranches ( ) : ICollection
return ICollection
        public ICollection<string> GetMergedBranches()
        {
            return RunGitCmd(GitCommandHelpers.MergedBranches()).Split(new[] { '\n' }, StringSplitOptions.RemoveEmptyEntries);
        }
GitModule