我将sublime添加到默认的git编辑器中。但我得到的错误信息如下:
ubl -n -w: subl: command not found
error: There was a problem with the editor 'subl -n -w'.
我不想再使用sublime,任何人都知道如何从git中删除sublime编辑器
答案 0 :(得分:6)
您可以使用以下命令更改默认编辑器(例如vi):
git config --global --add core.editor vi
其中--global
表示您要全局更改设置。您还可以在当前存储库中本地更改设置(--local
)并使用系统(--system
)。
您可以使用git config -l
查看当前配置的内容。
编辑:如果您只想删除编辑器而不是添加新编辑器,请使用:
git config --global --unset-all core.editor