Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

7 Answers

up vote 32 down vote accepted

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":

git commit -F- <<EOF
Message
goes
here
EOF
share|improve this answer
4  
@Peter Farmer's answer later on mentions that Git convention is apparently something like: 1 line for summary, two line breaks, then a detailed message. – Nick Spacek Oct 14 '11 at 15:30
Also, see below post by @esse. A simple carriage return does the trick. – Hakan Ensari Jul 5 '12 at 9:42

Using git from the command line with bash you can do the following:

git commit -m "this is
> a line
> with new lines
> maybe"

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.

share|improve this answer
The simplest way to do this. Thanks for the answer! – bentford Jul 10 '12 at 20:04
Incredibly convenient, thank you very much for sharing this. – KomodoDave Nov 13 '12 at 14:07

You should be able to use

git commit -m $'first line\nsecond line'
share|improve this answer

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.

share|improve this answer
1  
You can do the same in bash. – Peter Farmer Feb 21 '11 at 11:01
Thanks for letting me know, Peter. – Abizern Feb 21 '11 at 11:03

If you just want, say, a head line and a content line, you can use:

git commit -m "My head line" -m "My content line."
share|improve this answer
When using gitk this shows as separate messages, but thanks it does work. – Alan Whitelaw Feb 21 '11 at 20:24
5  
This has a benefit of working on Windows where quoting tricks mentioned elsewhere don't work. Separate -m for each line. Nice! – ddotsenko Apr 17 '12 at 20:26
Messages created using this method display correctly on GitHub, GitHub for Windows and TortoiseGit. – Stony Mar 27 at 12:06

Doing something like:

git commit -m"test\ntest"

doesn't work, but something like:

git commit -m"$(echo -e "test\ntest")"

works, but its not very pretty. You setup a git-commitlb command in your PATH which does something like this:

#!/bin/bash

message=$1

git commit -m"$(echo -e "$message")"

and use it like this:

git commitlb "line1\nline2\nline3"

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:

git commitlb "line1\n\nline2\nline3"
share|improve this answer
+1 it was that general convention that got me looking down this route. Thanks – Alan Whitelaw Feb 21 '11 at 20:27

You could use git commit -m "$(echo)" or git commit -m $'\n'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.