GitCommands.GitCommands.PatchCmd C# (CSharp) Method

PatchCmd() public static method

public static PatchCmd ( string patchFile ) : string
patchFile string
return string
        public static string PatchCmd(string patchFile)
        {
            return "am --3way --signoff \"" + FixPath(patchFile) + "\"";
        }
GitCommands