We allow developers to checkout copies of Omeka using anonymous Subversion access. If you're new to SVN, or have any specific question this guide can give you information about every command and help you through the process. To work, you have to have Subversion installed on your local machine. Visit the Subversion website and follow their directions.
Check out a Stable Tagged Version
- Browsing the Omeka SVN directory, you will see folders for branches, plugins, tags, themes, and trunk among others. The tags folder contains all the stable releases of Omeka. To check out a stable release of Omeka for production use, try this checkout command:
svn co https://omeka.org/svn/tags/latestversion#/ omeka
This will make a directory called 'omeka' with all of the files you'll need. - When a new version is released, run an 'svn switch' command to upgrade to the latest version of Omeka.
- Do not commit any changes to a tagged version.
Check out the Trunk or a Branch
If you want to contribute to development or keep up with bug fixes as they are made, you may check out one of the stable branches.
- Check out a branch or the trunk using the following commands:
svn co https://omeka.org/svn/branches/stable-1.0/ omeka
svn co https://omeka.org/svn/trunk/ omeka
- Stable branches will only receive bug fixes and minor enhancements, whereas the trunk will have all the latest changes (and as a result, may not be stable enough for production use).
- If you are using anything other than a tagged release, you can update your installation by going into the directory and running this command:
svn update
That will update all your files to the latest revision.
