更改 Git 提交编辑器

Abdul Jabbar 2023年1月30日 2022年4月20日
  1. 使用终端更改 Git 编辑器
  2. 编辑 .gitconfig 文件以更改 Git 编辑器
更改 Git 提交编辑器

在 Git 中,我们可以更改在输入提交时使用的默认编辑器以推送到远程仓库。

本教程将演示如何通过两种配置方法切换到我们选择的 Git 编辑器。

使用终端更改 Git 编辑器

如果我们希望我们的编辑器是 nano,下面是我们将用来更改编辑器的命令。

git config --global core.editor "nano"

正如我们所看到的,有一个突出显示的部分,我们可以根据我们想要的编辑器进行更改。

在 windows 系统中,如果要设置其他的文本编辑器,要特别提到要执行的文件的整个路径。

编辑 .gitconfig 文件以更改 Git 编辑器

更改 Git 编辑器的另一种方法是编辑我们主目录中的 .gitconfig 文件。可以根据操作系统跟踪文件的位置。

以下是在不同操作系统上设置默认 Git 编辑器的示例。

操作系统 配置命令
Mac,带有命令行工具 git config --global core.editor "bbedit -w"
Linux git config --global core.editor "gedit --wait --new-window"
Windows 64 位 git config --global core.editor "'C:\Program Files\Vim\vim72\gvim.exe' --nofork '%*'"
Author: Abdul Jabbar
Abdul Jabbar avatar Abdul Jabbar avatar

Abdul is a software engineer with an architect background and a passion for full-stack web development with eight years of professional experience in analysis, design, development, implementation, performance tuning, and implementation of business applications.

LinkedIn

相关文章 - Git Commit