错误:编辑器“mate -w”有问题;

发布于 2024-09-12 13:27:15 字数 227 浏览 10 评论 0原文

我使用此命令来指定文本编辑器:

$ 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好久不见√ 2024-09-19 13:27:15

您是否安装了 mate shell:

尝试从终端运行它

ln -s /Applications/TextMate.app/Contents/Resources/mate /usr/bin/mate

至于此设置的存储位置,请查看全局 Git 配置文件:

~/.gitconfig

Have you installed the mate shell:

Try running this from the Terminal

ln -s /Applications/TextMate.app/Contents/Resources/mate /usr/bin/mate

As for where this setting is stored have a look at the global Git config file at:

~/.gitconfig

年华零落成诗 2024-09-19 13:27:15

我假设您正在尝试使用 TextMate 作为默认编辑器。此错误告诉您运行 TextMate 的命令行工具“mate”不在路径上。

您必须将其添加到系统路径中。首先你必须找到你的伴侣程序;这是我的位置:

Nick@Macintosh-3 ~/Desktop/Programming/Minesweeper master$ which mate
/usr/bin/mate
Nick@Macintosh-3 ~/Desktop/Programming/Minesweeper master$ ls -la /usr/bin/mate
lrwxr-xr-x  1 root  wheel  50 Mar 30  2009 /usr/bin/mate -> /Applications/TextMate.app/Contents/Resources/mate

所以它在 /Applications/TextMate.app/Contents 中

制作一个到 /usr/bin/mate 的 simlink:

ln -s /Applications/TextMate.app/Contents/mate /usr/bin/mate

现在,当您在命令行中键入 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:

Nick@Macintosh-3 ~/Desktop/Programming/Minesweeper master$ which mate
/usr/bin/mate
Nick@Macintosh-3 ~/Desktop/Programming/Minesweeper master$ ls -la /usr/bin/mate
lrwxr-xr-x  1 root  wheel  50 Mar 30  2009 /usr/bin/mate -> /Applications/TextMate.app/Contents/Resources/mate

So it's in /Applications/TextMate.app/Contents

Make a simlink to /usr/bin/mate:

ln -s /Applications/TextMate.app/Contents/mate /usr/bin/mate

Now when you type mate at the command line, you should launch a new TextMate instance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文