dropbox / avrecode

Lossless video compression: decode an H.264-encoded video file and reversibly re-encode it as as a smaller file.
BSD 3-Clause "New" or "Revised" License
276 stars 37 forks source link

Use public url in .gitmodules #1

Closed schnaader closed 8 years ago

schnaader commented 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:

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 = 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.

lesniewski commented 8 years ago

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.