将git默认的编辑器设置为vin

git默认编辑器现状

如下,很多linux发行版,未加修改的情况下,git的默认编辑器使用起来不太方便

复制代码
Signed-off-by: root <root@xxx.COM>

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# Committer: root <root@xxx.COM>
#
# On branch master
#
# Initial commit
#
# Changes to be committed:
#       new file:   1.tex
#











^G Get Help    ^O Write Out   ^W Where Is    ^K Cut Text    ^J Justify     ^C Cur Pos     M-U Undo       M-A Mark Text
^X Exit        ^R Read File   ^\ Replace     ^U Paste Text  ^T To Spell    ^_ Go To Line  M-E Redo       M-6 Copy Text

方法一:通过命令行设置

你可以使用 git config 命令来设置 Vim 为默认的编辑器。这个命令可以在你的仓库级别(只影响当前仓库)、全局级别(影响所有仓库)或系统级别(影响所有用户)上设置。

为当前仓库设置 Vim 为默认编辑器

复制代码
~ # git config core.editor "vim"

为所有仓库(全局)设置 Vim 为默认编辑器

复制代码
~ # git config --global core.editor "vim"

为系统上所有用户设置 Vim 为默认编辑器(需要管理员权限):

复制代码
~ # git config --system core.editor "vim"

方法二:通过环境变量设置

另一种设置默认编辑器的方法是设置环境变量 EDITOR。这会影响所有需要编辑器的程序,包括 Git。

在 Bash 中设置(仅对当前会话有效)

复制代码
~ # export EDITOR=vim

在 Bash 中永久设置

export EDITOR=vim 添加到你的 ~/.bashrc~/.bash_profile 文件中,然后重新加载配置文件(通过运行 source ~/.bashrc 或重新登录)。

复制代码
~ # git config --system core.editor "vim"
相关推荐
李日灐19 分钟前
< 7 > Linux 开发工具:git 版本控制器 和 cgdb/gdb 调试器
linux·运维·服务器·开发语言·git·调试器·gdb/cgdb
Gust of wind42 分钟前
idea结合git和Gitee的初步使用
git·gitee·intellij-idea
夜七少eleanor44 分钟前
【Git】2026全图文详解安装教程
git
海边的Kurisu44 分钟前
从零开始的Git生活 | 刚实习同学的噩梦 And 参与开源不可缺的一环
git·生活
不老刘2 小时前
Git Cherry-Pick:微前端架构下的“精准医疗”与最佳实践
前端·git
爬楼的猪3 小时前
Git Folder Dashboard
git
Uncertainty!!3 小时前
claude code中添加skills自动生成git commit信息
git·git commit·claude code
FserSuN5 小时前
Git Worktree 使用学习
git·学习
Z文的博客5 小时前
嵌入式LINUX QT 开发 .gitignore 文件编写指南
linux·git·qt·elasticsearch·嵌入式
前端双越老师5 小时前
3 个命令 7 个步骤,学会 git worktree 并行开发
git·ai编程·全栈