I am using git
on windows and when I use the commit
command in the command prompt, my Notepad++ opens up and asks me to put in a commit message as follows:
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Your branch is up-to-date with 'origin/master'.
This is great, but I want to be able to separate the message title from its body. When I write my commit message above the #'s, it is sent as if I used the commit -m
command, that is, it contains only a title.
Can someone suggest the proper way to be able to separate the title from the body in a commit message using Notepad++?
Edit: this question is different from other questions about separating body from title in commit messages, because the other questions ask how to do it from the command line, whereas I ask how to do it with Notepad++ .