Hello stackoverflow community,
I'm working with Yocto 2.2 (Morty) and I would like to configure a recipe that fetch a private github repo using https protocol. I can do it with ssh but my constraint is to be machine-independant so https it better.
I'm expecting bitbake, when performing the do_fetch() feature, to ask me for my username and password but couldn't get this result yet.
My recipe is configured like this:
SRC_URI = "gitsm://github.com/ORGANISATION/my-depot.git;branch=master;protocol=https"
Running bitbake gives me the following error:
Fetcher failure: [...] git -c core.fsyncobjectfiles=0 ls-remote https://github.com/ORGANISATION/my-depot.git failed with exit code 128, output: fatal: could not read Username for 'https://github.com': No such device or address
However, if I copy paste the following command in my terminal, i get the Username prompt:
git -c core.fsyncobjectfiles=0 ls-remote https://github.com/ORGANISATION/my-depot.git
Username for 'https://github.com':
Any idea ?
EDIT: Note that i also don't want my credentials to appear in the SRC_URI flag.