Versions Compared

Key

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

...

js7-inventory-schemas is a standard maven project and can be build built with maven. At the time of writing SOS uses maven version 3.3.9.

...

Determine the latest tagged version and store it to as a local variable.

Code Block
languagebash
titleRetrieve Latest Tagged Version
tag=$(git describe --tags `git rev-list --tags --max-count=1`)

Checkout the latest version using the just stored variable to a local branch "latest" using the variable you have just stored.

Code Block
languagebash
titleCheckout Latest
git checkout $tag -b latest

...