Reputation: 33741
I'm in VIM, adding my commit message. Once I'm satisfied with my message, how do I proceed with the actual commit?
Upvotes: 2
Views: 79
Reputation: 54326
Save and quit VIM and it should all work like magic. You can also use git commit -m "Message"
to avoid the need to start up your editor.
Upvotes: 2