Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

To check out the Application layer source code:

Code Block

git clone git://github.com/collectionspace/application.git

You will then see a newly-created application directory. Change into this directory.

...

To view (read-only) the stable Application layer source code for a particular version of CollectionSpace, such as a version of CollectionSpace that your museum is targeting:

Code Block

git checkout {version_number_goes_here}

Be sure to substitute your desired version number, such as v

Wiki Markup
{multi-excerpt-include:pageTitle=VERSION INCLUSIONS|name=CSPACE-VERSION|nopanel=true}
, for {version_number_goes_here} in the command above, as in this example:

To work with the stable Application layer source code for a particular version of CollectionSpace, in a newly-created local branch - a place in which you can make your own changes based on that version:

git checkout -b {your_branch_name_goes_here} {version_number_goes_here}
Code Block

Be sure to substitute your branch name for {your_branch_name_goes_here}, and the desired version number, such as v

Wiki Markup
{multi-excerpt-include:pageTitle=VERSION INCLUSIONS|name=CSPACE-VERSION|nopanel=true}
, for {version_number_goes_here} in the command above, as in this example:

Tip

To view a list of available version numbers, each representing the stable Application source code ("tagged" release) for a particular version of CollectionSpace:

git tag -l
Code Block

Test

Within the directory into which you just downloaded the Application layer source code, you should see a set of files and directories that looks much like the ones listed here:

...