Here is the Problem I am having
I followed the Steps mentioned in the Doc for setting up Gitosis http://www.jedi.be/blog/2009/05/06/8-ways-to-share-your-git-repository/#gitosis
I completed the following steps successfully
Install gitosis Initializing the gitosis account
Checkout the gitosis-admin repository to my local machine and add a Public Key of my Web Server to the keydir Directoty and add Configuration to allow the Web Server Account to write.
Commit these changes in gitosis-admin and push them. This adds the Public Key to authorised_keys file for the gitosis user.
Now I go to my Web Server and try to push a new repository
$ cd project-X
$ git remote add origin gitosis@gitosis-server:project-X.git
$ git push origin master:refs/heads/master
Here it asks me to provide the Password, which it shouldn't and use the identity file instead.
Please Help.