I have working gitosis repo. If I do
git clone git@server:repo.git
it clones the repo correctly. However, it does not work if I do:
To install, you should only have to run:
pip install git+git://host/path_to_repo/repo.git
So for your example:
pip install git+git://server/path_to_repo/repo.git
I would rather use the ssh uri syntax (rather than the SCP syntax)
git clone git+ssh://git@server/repo.git