GitCommands.GitModule.FormatPatch C# (CSharp) Method

FormatPatch() public method

public FormatPatch ( string from, string to, string output ) : string
from string
to string
output string
return string
        public string FormatPatch(string from, string to, string output)
        {
            output = output.ToPosixPath();

            var result = RunGitCmd("format-patch -M -C -B \"" + from + "\"..\"" + to + "\" -o \"" + output + "\"");

            return result;
        }

Same methods

GitModule::FormatPatch ( string from, string to, string output, int start ) : string
GitModule