インストール手順はこちら。

$ wget http://git-core.googlecode.com/files/git-1.8.1.3.tar.gz
$ tar xvzf git-1.8.1.3.tar.gz 
$ cd git-1.8.1.3
$ ./configure --prefix=$HOME/local --enable-pthreads="-pthread" --without-tcltk --with-zlib CC=gcc
$ gmake
$ gmake install

その後、リモートリポジトリの作成。

$ mkdir -p ~/git/foo.git
$ cd ~/git/foo.git/
$ git init --bare

その後、ローカルリポジトリの作成。

$ mkdir -p ~/repos/foo
$ cd ~/repos/foo/
$ git init

作成したローカルリポジトリに、対応するリモートリポジトリを定義する。

$ cd ~/repos/foo/
$ git remote add origin ssh://foo@ptan.info/~/git/foo.git

以上!