如何使用 git commit 打开 Sublime Text 3 编辑器

How to open Sublime Text 3 editor with git commit

我已经将 Sublime Text 3 配置为 git Bash 的文本编辑器。当我输入 subl 'filePath'

时,Sublime 成功打开

但是,当我尝试 git 提交时,文本编辑器无法打开并输出以下错误:

hint: Waiting for your editor to close the file... subl -n -w: subl: command not found
error: There was a problem with the editor 'subl -n -w'.
Please supply the message using either -m or -F option.

我已将文件添加到暂存区并准备提交。

你可以试试this

您可以在 Git 中设置默认编辑器以使用 Sublime Text 3。

  1. 安装 Sublime Text 3。

  2. 打开GitBash.

  3. 键入此命令:

git config --global core.editor "'C:/Program Files (x86)/sublime text 3/subl.exe' -w"

我在 Mac 上使用了下面的命令并且有效

$ git config --global core.editor "'/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl' -n -w"