I am trying to move from svn to GIT. With svn I use ssh and a svnserve wrapper like this one :
#!/bin/shumask 002exec /usr/bin/svnserve "$@" -r /very/long/path/to/projets
So I can use URI like this one : svn co svn+ssh://me@my-server.com/my-super-project/trunk
How can I achieve the same behavior with git (i.e. something like git clone me@my-server.com:my-super-project
) ?