如何使Git使用我选择的编辑器来提交?我更愿意用Vim编写提交消息,但它正在Emacs中打开它们。如何将Git配置为始终使用Vim?请注意,我希望在全球范围内这样做,而不仅仅是针对单个项目。
3 回答
慕尼黑8549860
TA贡献1818条经验 获得超11个赞
集 在Git配置中: git config --global core.editor "vim"
设置 环境变量: export GIT_EDITOR=vim
VISUAL
EDITOR
export VISUAL=vim export EDITOR="$VISUAL"
VISUAL
VISUAL
EDITOR
.
为崇高的文本.gitconfig
--wait
[core] editor = 'subl' --wait
“subl”可以被可执行文件的完整路径替换,但通常在正确安装时可用。
ITMISS
TA贡献1871条经验 获得超8个赞
sudo update-alternatives --config editor
There are 4 choices for the alternative editor (providing /usr/bin/editor). Selection Path Priority Status------------------------------------------------------------ 0 /bin/nano 40 auto mode 1 /bin/ed -100 manual mode 2 /bin/nano 40 manual mode* 3 /usr/bin/vim.basic 30 manual mode 4 /usr/bin/vim.tiny 10 manual mode Press enter to keep the current choice[*], or type selection number:
- 3 回答
- 0 关注
- 1302 浏览
添加回答
举报
0/150
提交
取消