Skip to main content

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 repo get

Print detailed information about one repository: ID, visibility, creation time, description.

Synopsis

vers repo get <name>
vers repo get <name> --format json

Options

OptionDescription
--formatOutput format: json

Examples

Default output

vers repo get my-app
# Name:        my-app
# Repo ID:     1f2aabcd-1234-5678-9abc-def012345678
# Visibility:  private
# Created:     2026-04-18 14:02:10
# Description: Production build artifacts

JSON

vers repo get my-app --format json
{
  "repo_id": "1f2a…",
  "name": "my-app",
  "is_public": false,
  "created_at": "2026-04-18T14:02:10Z",
  "description": "Production build artifacts"
}
To see the tags inside the repo, use vers repo tag list.

Error Cases

Repository not found

vers repo get nope
# Error: Repository not found

See Also