Forum archive
Issue setting up new git repository with Redmine virtual image.
First off, your redmine image is awesome.
now to my issue. I have redmine running on virtual box. I want to move my unsourced code into a new git repository. I've followed the steps on this link /forum/support/20100914/how-setup-git from Dan's 2nd post.
cd /srv/repos/git
git init test
cd /test
touch readme
git add .
git commit -m "Inital Commit"
When i go into my redmine project, i have sucessfuly setup the project to use the respository @ /srv/repos/git/test/.git and my inital commit shows up fine.
I then followed the link @ /node/1633
ln -s /srv/repos/git/test/.git /var/cache/git/test.git
now the issue is when on my windows machine running cygwin and run the following command:
git clone git://192.168.1.169/git/test rc
I receive
$ git clone git://192.168.1.169/git/test rcCloning into rc...
fatal: The remote end hung up unexpectedly
Any help?
I bet it is an authentication issue. One way around is to just use SSH.