The following set of commands worked correctly
$ mkdir carboncake
$ cd carboncake
$ git init
$ git remote add origin gitosis@myserver.net:repositories/carboncake.git
$ git pull
But when i tried pull as a different user,
$ mkdir carboncake
$ cd carboncake
$ git init
$ git remote add origin mithun@myserver.net:repositories/carboncake.git
$ git pull
I got the following error
fatal: 'repositories/carboncake.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
my gitosis.conf contains
[gitosis]
[group team]
writable = sweepshots
members = git_id_rsa
[group gitosis-admin]
writable = gitosis-admin
members = git_id_rsa
[repo carboncake]
description = A brand new app by Mithun.
owner = Mithun P
[group carboncake]
writable = carboncake
members = mithun @core
and the keydir contains
git_id_rsa.pub KEY-----.pub mithun.pub mithun-rsa-key-20110427.pub
and the user's .ssh dir contains
mithun@testserver:~$ ls .ssh/
id_rsa id_rsa.pub mithun_rsa mithun_rsa.pub
-- UPDATE
I tried $ git remote add origin mithun@myserver.net:carboncake.git too, but the same error.
Actually carboncake.git is located at /srv/gitosis/repositories/carboncake.git
$HOME/.ssh/id_rsa.pub. – VonC Apr 27 '11 at 11:54