I have git repository (powered by gitosis) on my local ubuntu server
I want to have an access from the other local computer powered by windows xp (msysgit)
I have generated rsa key on windows machine and published to ubuntu server
I have .ssh/config file setted to use this key on windows machine
When I do
this works as desired, without password prompt
However when I try to clone repository with :
git clone [email protected]:gitosis-admin
or
git clone ssh://192.168.0.6/~/gitosis-admin
then I got following errors:
fatal: 'gitosis-admin' does not appear to be git repository
When I try to clone with existing user account e.g. user named atom
git clone [email protected]:gitosis-admin
this works as desired, but does not work for other repo projects
My gitosis.conf:
[gitosis]
[group gitosis-admin]
writable = gitosis-admin
members = windows_user atom@atom-desktop
[group team]
writable = another_project
members = @all
So my question is: 'Where is the problem ?' Should I change setting of gitdaemon ?