Documentation Index
Fetch the complete documentation index at: https://docs.vers.sh/llms.txt
Use this file to discover all available pages before exploring further.
vers tag is Vers’ analogue of git tag: a human-readable name pointing to a commit. Tags are mutable (you can move them with tag update) and cheap (deleting a tag doesn’t touch the commit it points to).
vers build -t, vers run-commit, and vers build’s FROM clause all accept tag names anywhere a commit id is expected.
Synopsis
Subcommands
vers tag create
Create a tag pointing to a commit.
Naming rules: alphanumeric characters plus
-, _, .; 1–64 characters.| Option | Description |
|---|---|
-d, --description | Optional description |
vers tag list
List all tags in your organization.
| Option | Description |
|---|---|
-q, --quiet | Just names, one per line |
--format json | Machine-readable output |
vers tag get
Show details for a single tag.
vers tag update
Move a tag or update its description. At least one of --commit or --description is required.
| Option | Description |
|---|---|
--commit | New commit id to point at |
-d, --description | New description |
vers tag delete
Delete one or more tags. Commits they pointed at are unaffected.
Examples
Name your build outputs
Promote through environments
Branch off a named tag
Common Patterns
Tag the latest build
Promote through environments
Delete all test tags
Pin a release
See also
- vers commit — create the commits tags point to
- vers build — build a commit and tag it in one step with
-t - vers run-commit — boot a commit or tag
- vers branch — branch from a commit or tag