Hello, I wanted to experiment at home (for educational purposes) work with the git server. To do this, created a virtual machine (using VirtualBox) as a server. On a virtual machine, a network bridge is used as a network adapter. As a program for the implementation of the git server using scm manager .
The goal was to create a remote repository on a virtual machine and send commits to the server from the main PC, i.e. on the virtual machine.
OS: on the main PC is windows 7, 64 bit;
on VM (git server) windows 7, 32 bit.
The problem occurred when I try to send commits or to clone the repository from the main PC to the virtual I get an error. Although from the browser of the main PC to the server I go quietly without any errors (link: http://diserver:8080/scm ).
If (on the main PC) in git Bash I write git clone http://diserver:8080/scm/git/android5 then a fatal: repository 'http://diserver:8080/scm/git/android5/' not found error occurs fatal: repository 'http://diserver:8080/scm/git/android5/' not found .
If for example opening git bash on a virtual PC and writing
git clone http://localhost:8080/scm/git/android5 then everything works without problems.
Please tell me what could be the problem?
================================================= =
The full history of typing the command in the main PC in git bash:
$ git clone http://diserver:8080/scm/git/android5 Cloning into 'android5'... fatal: repository 'http://diserver:8080/scm/git/android5/' not found