GitCommands.GitCommands.InTheMiddleOfConflictedMerge C# (CSharp) Method

InTheMiddleOfConflictedMerge() public static method

public static InTheMiddleOfConflictedMerge ( ) : bool
return bool
        public static bool InTheMiddleOfConflictedMerge()
        {
            return !string.IsNullOrEmpty(RunCmd(Settings.GitCommand, "ls-files -z --unmerged"));
        }
GitCommands