GitCommands.GitCommands.PatchCmd C# (CSharp) 메소드

PatchCmd() 공개 정적인 메소드

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