By default, git uses Vim as the editor for commit/rebase messages. This can be somewhat limiting if you aren't comfortable with using Vim, especially if you need to move around lines of code.
Luckily it's easy to switch over to using Sublime Text as the editor for your messages. When git needs you to input and save a message. It will simply open up Sublime Text and prompt you with the file that needs editing. Once you save and close the file, git will continue on with what it needs to do.
First thing we need to do is to make Sublime accessible via the command line. Chances are you might already have this installed, but if you haven't, you can follow the instructions here. If you are still on Sublime Text 2 - follow these instead.
Next, open up your Terminal or command line and paste the following:
git config --global core.editor "subl -n -w"
That's it! Next time Git requires you to edit a file or commit message, Sublime Text will pop open!
Find an issue with this post? Think you could clarify, update or add something?
All my posts are available to edit on Github. Any fix, little or small, is appreciated!