Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. git remote add workshop https://github.com/DSpace-Labs/dspace-angular-workshops.git
  2. git fetch --tags workshop (Pulls down the dspace-angular-workshops code locally, including tags)
  3. For the Basic Training workshop

    1. git checkout or2019-basic-start   (Checks out the starting point of the workshop, the "or2019-basic-start" tag)
    2. git checkout -b or2019-workshop-basic  (Creates a local branch named "or2019-basic" for you, based on that "or2019-basic-start" tag)
  4. For the Advanced Training workshop

    1. git checkout or2019-advanced-start   (Checks out the starting point of the workshop, the "or2019-advanced-start" tag)
    2. git checkout -b or2019-workshop-advanced  (Creates a local branch named "or2019-advanced" for you, based on that "or2019-advanced-start" tag)

...