I'm trying to ammend a commit comment on a git commit, so I git commit --amend then vi opens with text from the last commit's comment. Then I delete all of the text on the first line, but I cannot remove the newline character, how can I do that?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 5 down vote accepted

J - Join two lines

link|improve this answer
thanks :j worked! – erikvold Jun 6 '10 at 19:28
@Erik: If it has worked, please click on the tick left to the answer. – whitequark Jun 6 '10 at 19:30
I had to wait 2mins ={ – erikvold Jun 6 '10 at 19:37
feedback

You can use dd to delete the whole current line, whether it is empty or not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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