Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

The latest source code can be downloaded using the download link under "downloads" on the main page of the documentation.

The active source code repository is hosted at github.com/fcrepo/fcrepo.

Checking out the code

If you wish to work with the source code, you will need to install git.

You can clone (create your own local git repository) of the Fedora source using

No Format
git clone git@github.com:fcrepo/fcrepo.git

or

No Format
git clone https://github.com/fcrepo/fcrepo.git

The main development line of Fedora is the master branch

No Format
cd fcrepo
git checkout master

Downloading the source without using git

If you want to get a copy of the latest source code without using git you can download a tarball of the source code.

To download the current main development line ("master" branch):

No Format
curl -L -o fcrepo-source-master.tar.gz https://github.com/fcrepo/fcrepo/tarball/master

To download a branch (substituting in the appropriate branch-name)

No Format
curl -L -o fcrepo-source-branch-name.tar.gz https://github.com/fcrepo/fcrepo/tarball/branch-name

Note that if you are intending to work with the source code, rather than just view the source or build the Fedora Repository from it, you will need to get a copy using git as above.