GitCommands.GitCommands.OpenWithDifftool C# (CSharp) Method

OpenWithDifftool() public static method

public static OpenWithDifftool ( string filename ) : string
filename string
return string
        public static string OpenWithDifftool(string filename)
        {
            var output = "";
            if (VersionInUse.GuiDiffToolExist)
                RunCmdAsync(Settings.GitCommand, "difftool --gui --no-prompt \"" + filename + "\"");
            else
                output = RunCmd(Settings.GitCommand, "difftool --no-prompt \"" + filename + "\"");
            return output;
        }

Same methods

GitCommands::OpenWithDifftool ( string filename, string revision1, string revision2 ) : string
GitCommands