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.
我正在尝试使用向我的更改添加提交消息
git commit -a
或者只是简单
git commit
这以某种方式打开了 GNU Nano 2.2.6 编辑器,我对此一点也不满意。所以问题是:
如何修改我的设置以使其始终以 VIM 打开?
我已经做的是在我的 ~/.bash_profile 中插入以下行
set EDITOR = vim
请帮忙 !
您可以从命令行或在您的.gitconfig
.gitconfig
git config --global core.editor vim
要使 Vim 成为仅 Git 的默认编辑器,请参阅 HST 的答案。但是,您可能希望将 Vim 作为所有应用程序的默认设置。
这可以通过
export EDITOR=vim
在您的~/.bash_profile或~/.bashrc. 关键是export,否则该设置不会像 Git 那样继承到已启动的进程。
~/.bash_profile
~/.bashrc
export