From 7fe707f5ac9bceed9b692ee50e527ed1c7a1896e Mon Sep 17 00:00:00 2001 From: Aleksey Pivovarov Date: Tue, 28 Jun 2016 14:47:54 +0300 Subject: [PATCH] IDEA-152968 git: fix commit message parsing in history --- plugins/git4idea/src/git4idea/history/GitHistoryUtils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java b/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java index 92b1db5f6977..bdc5e7c6e60f 100644 --- a/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java +++ b/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java @@ -674,6 +674,7 @@ public class GitHistoryUtils { myBuffer.setLength(0); myBuffer.append(s); + myBuffer.append("\n"); return processResult(line); }