我使用此命令指定文本编辑器:
$ git config --global core.editor“mate -w”
当我收到此错误时,如何删除此配置:
错误:无法运行mate -w:没有这样的文件或目录
或者,我该如何修复此错误呢?
感谢。
答案 0 :(得分:1)
您是否安装了配对外壳:
尝试从终端
运行此功能ln -s /Applications/TextMate.app/Contents/Resources/mate / usr / bin / mate
至于存储此设置的位置,请查看全局Git配置文件:
〜/的.gitconfig
答案 1 :(得分:0)
我假设你正在尝试使用TextMate作为默认编辑器。此错误告诉您“mate”(运行TextMate的命令行工具)不在路径上。
您必须将其添加到系统路径中。首先,你必须找到你的伴侣计划;这是我的地方:
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:
建立一个simlinkln -s /Applications/TextMate.app/Contents/mate /usr/bin/mate
现在,当您在命令行输入配合时,应启动一个新的TextMate实例。