GitCommands.GitModule.RunExternalCmdDetachedShowConsole C# (CSharp) Method

RunExternalCmdDetachedShowConsole() public method

Run command, console window is visible
public RunExternalCmdDetachedShowConsole ( string cmd, string arguments ) : Process
cmd string
arguments string
return Process
        public Process RunExternalCmdDetachedShowConsole(string cmd, string arguments)
        {
            try
            {
                return StartProccess(cmd, arguments, _workingDir, showConsole: true);
            }
            catch (Exception ex)
            {
                Trace.WriteLine(ex.Message);
            }

            return null;
        }
GitModule