Public clone URL: git://git.assembla.com/retro

 

Getting Git

Windows

Download msysgit installation and follow the steps.

Debian/Ubuntu

apt-get install git-core

OSX

Download and run git-osx-installer.

Or install from sources. Install Xcode tools from OSX DVD, then use HomeBrew to install git:

ruby -e "$(curl -fsSL https://gist.github.com/raw/323731/install_homebrew.rb)"
brew install git

*BSD

cd /usr/ports/devel/git
make
make install

To checkout the repository

Public access, clone/pull with git:// protocol
git clone git://git.assembla.com/retro

About Git

Git is a popular version control system designed to handle very large projects with speed and efficiency; it is used mainly for various open source projects, most notably the Linux kernel. Git falls in the category of distributed source code management tools, similar to e.g. GNU Arch or Monotone (or BitKeeper in the proprietary world). Every Git working directory is a full-fledged repository with full revision tracking capabilities, not dependent on network access or a central server.