Public clone URL: git://git.assembla.com/srtools.git
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/srtools.git
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.- Git - SVN Crash Course - a brief intro to Git for Subversion users
- Git cheat sheet - a reference to everyday commands
- Git reference site - a quick way to learn and remember git commands
- Git community book is meant to help you learn how to use Git as quickly and easily as possible