【发布时间】:2016-04-08 09:32:35
【问题描述】:
我有兴趣克隆私人 git 存储库的内容,以便自定义 BitBake 配方使用它们。我尝试从 Yocto Project 邮件列表中调整 this technique,并生成以下内容:
SRC_URI = "git://www.example.com/path/to/repo;protocol=https;branch=master;name=commit;user=<username>:<password>
SRCREV_commit = "9f8309bbdf0632191bec21fada2cb61a30bcf53e"
我使用的密码包含一个左括号。我收到此错误:
/bin/sh: -c: line 0: syntax error near unexpected token `)'
我能否以某种方式转义这个特殊字符,或者使用其他方式来克隆 repo?
【问题讨论】:
标签: git git-clone yocto bitbake openembedded