解决bash: syntax error near unexpected token `(‘ 的错误
程序员文章站
2024-02-26 14:13:34
...
问题描述:
执行 $ git pull origin 2.1.0-2.4.0-SNAPSHOT(功能扩展)
得到如下结果
bash: syntax error near unexpected token `('
原因:
然后我谷歌了一下,发现linux5.0之后,是不能带有括号的,这个时候就需要转译了。
解决方法:
转译的方法有下面两种:
方法一:
$ git pull origin 2.1.0-2.4.0-SNAPSHOT\(功能扩展\)
方法二:
git pull origin 2.1.0-2.4.0-SNAPSHOT"(功能扩展)"
上一篇: git bash指令
下一篇: git的bash脚本
推荐阅读
-
解决bash: syntax error near unexpected token `(‘ 的错误
-
PHP异常Parse error: syntax error, unexpected错误解决方法
-
最后的分了 。Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';是什么意思解决思路
-
syntax error PHP syntax error, unexpected $end 错误的一种原因及解决
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
Linux 5中出现的-bash: syntax error near unexpected token `('错误
-
php syntax error, unexpected $end 错误怎么解决
-
PHP Parse Error: syntax error, unexpected $end 错误解决办法
-
syntax error near unexpected token else
-
Incorrect syntax near the keyword 'user'错误的解决方法