I am using git from the command line, and trying to add a line break to the commit message (using git commit -m "") without going into vim.
Is this possible?
|
|
|
Certainly, how it's done depends on your shell. In bash, you can use single quotes around the message, and just leave the quote open, which will make bash prompt for another line, until you close the quote. Alternatively, you can use a "here document":
|
|||||||
|
|
Using git from the command line with bash you can do the following:
Simply type and press when you want a new line, the ">" symbol means that you have pressed and there is a new line. Above examples work also. |
|||||
|
|
|
I use zsh on a Mac and I can post multi-line commit messages within double quotes ("). Basically I keep typing and pressing return for new lines, but the message isn't sent to git until I close the quotes and return. |
|||||||
|
|
If you just want, say, a head line and a content line, you can use:
|
|||||||||
|
|
Doing something like:
doesn't work, but something like:
works, but its not very pretty. You setup a
and use it like this:
Word of warning, I have a feeling that the general convention is to have a summary line as the first line, and then two line breaks, and then an extended message in the commit message, so doing something like this would break that convention. You could of course do:
|
|||
|