GitCommands.GitModule.CreateGitStartInfo C# (CSharp) Method

CreateGitStartInfo() private method

private CreateGitStartInfo ( string arguments ) : ProcessStartInfo
arguments string
return System.Diagnostics.ProcessStartInfo
        private ProcessStartInfo CreateGitStartInfo(string arguments)
        {
            return GitCommandHelpers.CreateProcessStartInfo(AppSettings.GitCommand, arguments, _workingDir, SystemEncoding);
        }
GitModule