You have successfully installed gitosis, and you have been able to add users into gitosis. Now, on a remote computer, you try to checkout.
tearlayneed-lm:tmp rshekhar$ git clone ssh://stormcrow@home:221/gitosis-admin Cloning into gitosis-admin... fatal: '/gitosis-admin' does not appear to be a git repository fatal: The remote end hung up unexpectedlyI am running the ssh server on port 221 and my username is stormcrow. If your reaction is WTF!, then I can sympathise with you. The correct clone command is
git clone ssh://stormcrow@home:221/~/gitosis-admin Cloning into gitosis-admin... remote: Counting objects: 24, done.If you failed to notice, there is a ~ required.