Sami
Sami

Reputation: 321

creation of local git repository fails

I am tyring to create a local git repository with this command on ubuntu 14.10, but it fails with error "you don't have correct access rights". Any idea what could be the problem?, is it a firewall issus?

$git clone -o khronos [email protected]:vulkan/LoaderAndTools.git .
Cloning into '.'...
ssh: connect to host gitlab.khronos.org port 22: Connection timed out
fatal: Could not read from remote repository.

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

Thanks

Upvotes: 1

Views: 64

Answers (1)

marcolz
marcolz

Reputation: 2970

The Connection timed out message indicates that your machine cannot connect to port 22.

As I can reach gitlab.khronos.org port 22 fine, my conclusion would be that it is a firewall in your local network that is the problem.

Upvotes: 1

Related Questions