0%

修改Git默认编辑器

  1. 使用git config设置:

    1
    2
    git config --global core.editor vim     # 全局设置
    git config core.editor vim # 当前项目设置
  2. 使用环境变量GIT_EDITOR

    1
    export GIT_EDITOR=vim