GitCommands.GitModule.GetMergeMessage C# (CSharp) Method

GetMergeMessage() public method

public GetMergeMessage ( ) : string
return string
        public string GetMergeMessage()
        {
            var file = GetGitDirectory() + "MERGE_MSG";

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