Git server
Had trouble figuring out how to clone from a private git server. As long as git is installed, you can create a repository, then pull from it using:
git clone ssh://user@host/~user/repo/
or you could also:
git clone ssh://user@host/home/user/repo/
But it just doesn’t do relative paths (except for the ~user/ part)