For example, I would prefer to write my commit messages in vim, but it is opening emacs.
How do I configure git to always use vim instead? Note that I want to do this globally, not just for a single project.
|
For example, I would prefer to write my commit messages in How do I configure git to always use |
|||||||||||||
|
|
From
|
|||||||||||||||||||
|
|
You can either set core.editor in your git config
or set the VISUAL or EDITOR environment variables.
|
|||||||||||||||
|
|
On Ubuntu (
Which will prompt the following:
|
||||
|
And if you are working with designers using the command line then Pico, and dont know short cuts ;)
Or
|
|||
|
|
In Windows 7, setting editor to Notepad++
|
|||
|
Setting Sublime Text 2 as Git commit editor in Mac OSX 10Run this command:
|
|||
|
|
|
In windows 7, while adding the "Sublime" editor it was still giving me an error - "Aborting commit due to empty commit message.". Sublime was not able to keep the focus. To fix this I opened the .gitconfig file in c:/users/username/ folder and added the following line with --wait option outside the double quotes.
Hope its helpful to somebody facing similar issue with Sublime. |
||||
|
|