GitCommands.GitCommands.GetNextRebasePatch C# (CSharp) Method

GetNextRebasePatch() public static method

public static GetNextRebasePatch ( ) : string
return string
        public static string GetNextRebasePatch()
        {
            var file = GetRebaseDir() + "next";
            return File.Exists(file) ? File.ReadAllText(file).Trim() : "";
        }
GitCommands