本文介绍了设置sublimetext 3作为git commit文本编辑器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用:
git config --global core.editorsubl

错误:
错误:无法运行subl:无此文件或目录
错误:无法启动编辑器'subl'
请使用-m或-F选项提供消息。

subl可以完美地工作。

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

来源:



编辑如果应用程序的名称不是 Sublime Text.app ,您需要用正确的名称替换它。

I'm having trouble setting up sublime as my git commit message editor.

Using: git config --global core.editor "subl"

Error:error: cannot run subl: No such file or directoryerror: unable to start editor 'subl'Please supply the message using either -m or -F option.

subl work perfectly otherwise.

解决方案

You can solve this by putting in a full path

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

Source: OXS Commandline

EDIT: If the name of the app is not Sublime Text.app you will want to replace that with the correct name.

这篇关于设置sublimetext 3作为git commit文本编辑器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 23:20
查看更多