version control - How to separate title from body in a git commit message using Notepad++? -


i using git on windows , when use commit command in command prompt, notepad++ opens , asks me put in commit message follows:

# please enter commit message changes. lines starting # '#' ignored, , empty message aborts commit. # on branch master # branch up-to-date 'origin/master'. 

this great, want able separate message title body. when write commit message above #'s, sent if used commit -m command, is, contains title.

can suggest proper way able separate title body in commit message using notepad++?

edit: question different other questions separating body title in commit messages, because other questions ask how command line, whereas ask how notepad++ .

you need add title+body separated 2 line breaks this:

# please enter commit message changes. lines starting # '#' ignored, , empty message aborts commit. # on branch master # branch up-to-date 'origin/master'. title of commit message  body of commit message (description) 

and press 'save' in notepad++ , close window.


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -