GitCommands.GitCommands.FormatPatch C# (CSharp) Méthode

FormatPatch() public méthode

public FormatPatch ( string from, string to, string output ) : string
from string
to string
output string
Résultat string
        public string FormatPatch(string from, string to, string output)
        {
            output = FixPath(output);

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

            return result;
        }

Same methods

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