Source Code Repository
Since 2.4.0, our source code is currently hosted in a Git repository (we used to use Subversion) which allows for anonymous read access. We highly suggest that if you are able to use Git on the server TangoCMS will be installed on, that you do so since it will be far easier to upgrade to later versions.
Downloading from the repository
The repository for TangoCMS is located at git://github.com/tcm-project/tangocms.git and can be viewed using your browser.
To get the latest stable version from our repository, you simply need to clone the Git repository and checkout the stable tag. You shall also need to copy the configuration directory. For example:
git clone git://github.com/tcm-project/tangocms.git cd tangocms
git checkout 2.5.0
cp -r config/default.dist config/default
The upgrade guide has full details on how to upgrade your installation to the latest version (with special instructions for using Git) and the normal upgrader within TangoCMS.
Our old Subversion repository
The SVN repository which we have used up until the development of 2.4.0+ is still available, and contains every single release of TangoCMS we have produced. This repository can still be accessed, however is read-only for everyone now. The URL is svn://tangocms.org/tangocms.
You can still checkout any of the branches, or tags to get a particular version. For example, to get the 2.4.0 tag or the 2.3.x branch, the following can be used:
svn co svn://tangocms.org/tangocms/tags/2.4.0/final tangocms-2.4.0
svn co svn://tangocms.org/tangocms/branches/2.3.x tangocms-2.3.x