Versions Compared

Key

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

...

As mentioned in the previous step, an existing, saved template can be updated as long as the name and version in template_config.yml haven’t changed.

If the name changes, then the new template will get it's own entry in the template list table. Since the names are different, initializing using just the name won't be a problem.

If the version changes but not the name, then the new template will get it’s own entry in the template list table, however, since the names didn’t change, the user will have to distinguish the template they want to initialize by providing the version as well

...

  • To initialize example-template version 1.0.0

    Code Block
    uip init -t example-template@1.0.0


  • To initialize example-template version 1.1.0

    Code Block
    uip init -t example-template@1.1.0


  • To list example-template version 1.0.0

    Code Block
    uip template list example-template@1.0.0


  • To list example-template version 1.1.0

    Code Block
    uip template list example-template@1.1.0


  • To delete example-template version 1.0.0

    Code Block
    uip template delete example-template@1.0.0


  • To delete example-template version 1.1.0

    Code Block
    uip template delete example-template@1.1.0


  • To export example-template version 1.0.0

    Code Block
    uip template export example-template@1.0.0


  • To export example-template version 1.1.0

    Code Block
    uip template export example-template@1.1.0


...