0

我刚刚开始使用 git 作为版本控制工具。除了代码编辑器之外,我已经成功设置了几乎所有东西。现在我使用 phpDesigner,但到目前为止我看到的所有配置选项都没有使用 phpDesigner。我已经按照一些说明进行操作,git config --global core.editor phpDesigner但是当我尝试提交时,git 仍然在说Syntax error near unexpected token '(' There was a problem with the editor. 我在 Windows 上开发,我的 phpDesigner 副本安装在C:\Program Files (x86). 有什么线索吗?

4

1 回答 1

0

听起来您的编辑器路径中的括号导致了问题。

您是否将编辑器目标放在引号中?

例如:

git config --global core.editor "C:\Program Files (x86)..."
于 2015-11-06T11:08:41.580 回答