How do I make Git use the editor of my choice for commits?

后端 未结 27 2140
庸人自扰
庸人自扰 2020-11-22 01:33

I would prefer to write my commit messages in Vim, but it is opening them in Emacs.

How do I configure Git to always use Vim? Note that I want to do this globally,

27条回答
  •  遥遥无期
    2020-11-22 01:58

    Setting Sublime Text 2 as Git commit editor in Mac OSX 10

    Run this command:

    $ git config --global core.editor "/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl"
    

    Or just:

    $ git config --global core.editor "subl -w"
    

提交回复
热议问题