Installing Git and gitosis on Ubuntu
I’m switching all my personal projects to git from Subversion. To that end, I’ve set up a remote git repository on my Linode.com VPS running Ubuntu. Here’s how to do it:
First, install git on the remote server:
sudo apt-get install git-core
Then, following instructions on scie.nti.st, we grab the gitosis code (still remote):
cd ~/src
git clone git://eagain.net/gitosis.git
Then:
cd gitosis
sudo [...]





