kujason / avod

Code for 3D object detection for autonomous driving
MIT License
939 stars 347 forks source link

I am unable to clone the repository .. why? #173

Closed MohamedAboushnief closed 4 years ago

MohamedAboushnief commented 4 years ago

I use this command git clone git@github.com:kujason/avod.git --recurse-submodules to clone the repo but I get this error

Cloning into 'avod'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

why?

sli057 commented 4 years ago

Same here...

kujason commented 4 years ago

This is probably because you don't have an ssh key set up. You can clone using HTTPS instead:

git clone https://github.com/kujason/avod.git
git submodule update --init --recursive
sli057 commented 4 years ago

Thanks for the quick response! The first command works, but the second command failed with the following info.

fatal: clone of 'git@github.com:kujason/wavedata.git' into submodule path '/Users/Shasha/Documents/avod/wavedata' failed Failed to clone 'wavedata'. Retry scheduled Cloning into '/Users/Shasha/Documents/avod/wavedata'... git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.

Any suggestions? Thanks!

kujason commented 4 years ago

Try changing the url for the wavedata submodule in .gitmodules to the HTTPS version: https://github.com/kujason/wavedata.git

sli057 commented 4 years ago

It works! Thanks for the quick and helpful response.