Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近安装了 Vim。现在,当我在交互模式下 rebase 我的分支时,Git 会自动打开 Vim。
但是,我不想在交互模式下打开 Vim;相反,我想打开默认的 Git 交互模式编辑器。如何设置 Git 使用的默认交互式编辑器?
我认为您想要的是使用 nano(这是 Ubuntu 上的默认文本编辑器),您可以通过以下方式进行设置:
git config --global core.editor "nano"