Skip to content

Obtaining older CICE versions

Elizabeth Hunke edited this page Apr 27, 2018 · 2 revisions

Obtaining a CICE release prior to version 6

If you expect to make any changes to the code, we recommend that you work in the CICE and Icepack repositories. Changes made to code in this repository will not be accepted, other than critical bug fixes.

Release tags from svn are available in this git repository and can be obtained the following ways:

Tarball

Download a tarball for a particular version from the release page. Information on releases is available in the CICE Versions Index (older).

Using git or svn

Checkout at the command line using git or svn commands. The pull-down list under "Branch: master" on the CICE-svn-trunk github page shows all of the available release versions.

  1. Git clone the branch with just the tag of interest to you:

    git clone -b svn/tags/release-5.1.2 https://github.com/CICE-Consortium/CICE-svn-trunk CICE_v5.1.2

  2. Git clone the entire repository using standard git commands:

    git clone https://github.com/CICE-Consortium/CICE-svn-trunk

  3. svn checkout the branch with just the tag of interest to you:

    svn checkout https://github.com/CICE-Consortium/CICE-svn-trunk/branches/svn/tags/release-5.1.2 cice_v5.1.2

Clone this wiki locally