Closed schnaader closed 8 years ago
Using the commands from README.md on an Ubuntu machine, I get the following error when trying to do git submodule update --init:
git submodule update --init
Permission denied (publickey). fatal: Could not read from remote repository.
According to this answer on StackOverflow, the public URL has to be used, and indeed it works after changing the url = ... line in .gitmodules to
url = ...
url = https://github.com/dropbox/libavcodec-hooks.git
and calling git submodule sync.
git submodule sync
I'm not sure if this is a general problem, but if it is, please change .gitmodules accordingly.
Done. Thanks for the report - I think everyone who's built the project so far has had ssh access to github, so we didn't notice.
Using the commands from README.md on an Ubuntu machine, I get the following error when trying to do
git submodule update --init
:According to this answer on StackOverflow, the public URL has to be used, and indeed it works after changing the
url = ...
line in .gitmodules tourl = https://github.com/dropbox/libavcodec-hooks.git
and calling
git submodule sync
.I'm not sure if this is a general problem, but if it is, please change .gitmodules accordingly.