Using WinXP I accidentally typed git commit -a instead of git commit -am "My commit message", and now I'm viewing my CMD prompt filled with the file version of my commit message ("Please enter the commit message for your..."). I've added my message to the top, but now I can't figure out how to save and leave. I tried to press CTRL + W + Q, but it doesn't do anything but add ^ where the cursor is.

I also tried esc first, and then CTRL + W + Q, but it says No write since last change (add ! to override).

link|improve this question

-1 for this is a command that is easily discovered by just viewing the help. – ldigas Feb 12 at 14:18
feedback

6 Answers

up vote 24 down vote accepted

Press ESC to make sure you are out of the edition mode and then type

:wq
link|improve this answer
+1 thanks. – orokusaki Jan 16 '11 at 22:56
+1 yeaaa, i found this. thanks. – Andrew Orsich Dec 2 '11 at 9:32
feedback

Esc to make sure you exit insert mode, then :wq (colon w q) or ZZ (shift-Z shift-Z).

link|improve this answer
+1 thanks. – orokusaki Jan 16 '11 at 22:56
feedback

A faster way to

  • Save
  • and quit

would be

:x

If you have opened multiple files you may need to do a

:xa
link|improve this answer
Note that :x will only write files that have changed. – Simon Richter Jan 31 '11 at 12:46
feedback

Instead of telling you how you could execute a certain command, I can provide you two links that may help you with VIM:

However, the best way to learn VIM is not only using it for Git commits but as regular editor for your everyday work.

If you're not going to switch to VIM, it's nonsense to keep it's commands in mind. In that case, go and set up your favourite editor to use with Git.

link|improve this answer
+1 for this really helpfull answer. I prefer Emacs and thanks to your link I don't have to google for a solution. – Keks Dose Feb 7 at 18:01
feedback

:q! will force an unconditional no-save exit

link|improve this answer
@Mark B - +1 phew, thanks for the warning. – orokusaki Jan 16 '11 at 22:55
feedback
  • Press i or a to get into Insert mode, type message of choice
  • press several times ESC to get out of Insert-Mode, or any other mode you might have ran into by accident
  • to save, do one of the following:
    • :wq
    • ZZ
  • to exit without saving, again one of the following:
    • ZQ
    • :q!

EDIT: To reload a file and undo all changes you have made, several times ESC and then :e!.

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.