更改 Git 提交編輯器
Abdul Jabbar
2023年1月30日
2022年4月20日
在 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 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