GitCommands.GitModule.GetNextRebasePatch C# (CSharp) Method

GetNextRebasePatch() public method

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