Could not read from remote Repository

Asked

Viewed 92 times

0

I created a BARE repository in the folder:

c://projetos/cliente1

this in the VMBOX ORACLE that is called (vmserver)

then when time access from real pc, returns the following message:

$ git clone file:///vmserver/projects/customer1 Cloning into 'customers1'... fatal: '//vmserver/projects/customer1' does not appear to be a git Repository fatal: Could not read from remote Repository.

Please make sure you have the correct access Rights and the Repository exists.

And if I add (c:) shows the same message.

1 answer

0

In case you do not use an accessible URL you need to use the SSH syntax to access the repository:

$ git clone user@vmserver:/vmserver/projetos/cliente1

In that case user@vmserver is what you would use to access the VM via SSH.

Getting Git on a Server

  • thank you, I’ll test.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.