info

vb info [VERSION | REPOSITORY_FILENAME] [OPTIONS]

Description

With no arguments, provide information about the current tree. If an argument is specified, provide information about the object in the repository of the current tree that the argument refers to. Or if the argument is the name of a repository, show information about that repository.

If the argument is a repository name, then the --verbose option shows all known check-out locations for that repository and all URLs used to access the repository. The --verbose is (currently) a no-op if the argument is the name of an object within the repository.

Use the finfo command to get information about a specific file in a check-out.

Options

-R, --repository REPO

Extract info from repository REPO

-v, --verbose

Show extra information about repositories

--key KEY

Show only information for the specified key

Examples

  • Init and open a repository

$ vb init info_repo.vbyte
project-id: 8f7b0f777264237e1034c0daaef6272e48b772f4
server-id:  158b935512f6781463dcc82606d59df85b1a85e2
admin-user: ubuntu (initial remote-access password is "apVvRLNPuw")
$ vb open -f info_repo.vbyte
project-name: <unnamed>
repository:   /tmp/sphinx_tests/15912672/info_repo/info_repo.vbyte
local-root:   /tmp/sphinx_tests/15912672/info_repo/
config-db:    /tmp/sphinx_tests/15912672/.visionbyte
project-code: 8f7b0f777264237e1034c0daaef6272e48b772f4
checkout:     f89bf0b89f054768d349827ee37300ede79d6046 2026-03-31 13:00:22 UTC
tags:         trunk
comment:      initial empty check-in (user: ubuntu)
check-ins:    1
  • Create an initial check-in

$ vb sys echo "hello" > app.txt
$ vb add app.txt
ADDED  app.txt
$ vb ci -m "initial"
Committed version: 475f0834a8c8cc9efa658e064ce9a50d7c03046f65806164a423e4c9fed2446f
  • Show repository and checkout information for the current tree

$ vb info
project-name: <unnamed>
repository:   /tmp/sphinx_tests/15912672/info_repo/info_repo.vbyte
local-root:   /tmp/sphinx_tests/15912672/info_repo/
config-db:    /tmp/sphinx_tests/15912672/.visionbyte
project-code: 8f7b0f777264237e1034c0daaef6272e48b772f4
checkout:     475f0834a8c8cc9efa658e064ce9a50d7c03046f 2026-03-31 13:00:23 UTC
parent:       f89bf0b89f054768d349827ee37300ede79d6046 2026-03-31 13:00:22 UTC
tags:         trunk
comment:      initial (user: ubuntu)
check-ins:    2

See Also