diff --git a/plugins/git4idea/src/git4idea/changes/GitChangeUtils.java b/plugins/git4idea/src/git4idea/changes/GitChangeUtils.java index 4e06200c7d00..789ff3a680d7 100644 --- a/plugins/git4idea/src/git4idea/changes/GitChangeUtils.java +++ b/plugins/git4idea/src/git4idea/changes/GitChangeUtils.java @@ -404,7 +404,7 @@ public class GitChangeUtils { fullComment = commentSubject; } else { - fullComment = commentBody + "\n\n" + commentSubject; + fullComment = commentSubject + "\n" + commentBody; } GitRevisionNumber thisRevision = new GitRevisionNumber(revisionNumber, commitDate);