GitCommands.GitCommands.GetMergeMessage C# (CSharp) Method

GetMergeMessage() public static method

public static GetMergeMessage ( ) : string
return string
        public static string GetMergeMessage()
        {
            var file = Settings.WorkingDir + ".git" + Settings.PathSeperator + "MERGE_MSG";

            return
                File.Exists(file)
                    ? File.ReadAllText(file)
                    : "";
        }
GitCommands