错误:编辑器“mate -w”有问题;
我使用此命令来指定文本编辑器:
$ git config --global core.editor "mate -w"
当我收到此错误时,如何删除此配置:
错误:无法运行 mate -w:没有这样的文件或目录
或者,我该如何修复此错误?
谢谢。
I used this command to specify the text editor:
$ git config --global core.editor "mate -w"
How can I remove this configuration as I'm getting this error:
error: cannot run mate -w: No such file or directory
Or, how can I fix this error instead?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否安装了 mate shell:
尝试从终端运行它
至于此设置的存储位置,请查看全局 Git 配置文件:
Have you installed the mate shell:
Try running this from the Terminal
As for where this setting is stored have a look at the global Git config file at:
我假设您正在尝试使用 TextMate 作为默认编辑器。此错误告诉您运行 TextMate 的命令行工具“mate”不在路径上。
您必须将其添加到系统路径中。首先你必须找到你的伴侣程序;这是我的位置:
所以它在 /Applications/TextMate.app/Contents 中
制作一个到 /usr/bin/mate 的 simlink:
现在,当您在命令行中键入 mate 时,您应该启动一个新的 TextMate 实例。
I assume you're trying to use TextMate as your default editor. This error is telling you that 'mate', the command line tool to run TextMate, is not on the path.
You must add it to your system path. First you must locate your mate program; here's where mine is:
So it's in /Applications/TextMate.app/Contents
Make a simlink to /usr/bin/mate:
Now when you type mate at the command line, you should launch a new TextMate instance.