我有興趣克隆私人git回購的內容,以便他們可以使用自定義的BitBake配方。我試着從Yocto計劃的郵件列表適應this technique,並製作了以下內容:如何從BitBake配方中克隆私人git倉庫?
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 `)'
我可以以某種方式逃避這個特殊字符或可能使用一些其他的方式來克隆回購?