GitCommands.GitModule.GetNextRebasePatch C# (CSharp) Метод

GetNextRebasePatch() публичный Метод

public GetNextRebasePatch ( ) : string
Результат string
        public string GetNextRebasePatch()
        {
            var file = GetRebaseDir() + "next";
            return File.Exists(file) ? File.ReadAllText(file).Trim() : "";
        }
GitModule