Skip to main content

vcs2l provides a command line tool to invoke vcs commands on multiple repositories.

Project description

What is vcs2l?

Vcs2l is a fork of Dirk Thomas's vcstool which is a version control system (VCS) tool, designed to make working with multiple repositories easier.

This fork is created to continue the development of vcstool, as it is no longer actively maintained.

The commands provided by vcs2l have the same naming structure as the original fork, so it can be used as a drop-in replacement. Therefore, the repository is renamed to vcs2l while maintaining the command names to vcstool to ensure compatibility with existing scripts and workflows.

For more information on how to use vcs2l, please refer to the documentation.

Note:

This tool should not be confused with vcstools (with a trailing s) which provides a Python API for interacting with different version control systems.

The biggest differences between the two are:

  • vcstool doesn't use any state beside the repository working copies available in the filesystem.
  • The file format of vcstool export uses the relative paths of the repositories as keys in YAML which avoids collisions by design.
  • vcstool has significantly fewer lines of code than vcstools including the command line tools built on top.

Python 3.6+ support

The latest version supports Python 3.6 and newer. However, the CI is only run on Python 3.7 and newer, as there are no suitable GitHub Actions runners available for Python 3.6. Additionally, Debian packages can only be built for platforms with Python 3.8 and newer.

How does it work?

Vcs2l operates on any folder from where it recursively searches for supported repositories. On these repositories vcs2l invokes the native VCS client with the requested command (i.e. diff).

Which VCS types are supported?

Vcs2l supports Git, Mercurial, Subversion, Bazaar.

How to use vcs2l?

The script vcs can be used similarly to the VCS clients git, hg etc. The help command provides a list of available commands with an additional description:

vcs help

By default, vcs2l searches for repositories under the current folder. Optionally one path (or multiple paths) can be passed to search for repositories at different locations:

vcs status /path/to/several/repos /path/to/other/repos /path/to/single/repo

Exporting and importing sets of repositories

Vcs2l can export and import all the information required to reproduce the versions of a set of repositories. Vcs2l uses a simple YAML format to encode this information.

This format includes a root key repositories under which each local repository is described by a dictionary keyed by its relative path. Each of these dictionaries contains keys type, url, and version. If the version key is omitted the default branch is being used.

This results in something similar to the following for a set of two repositories (vcs2l cloned via Git and rosinstall checked out via Subversion):

repositories:
  vcs2l:
    type: git
    url: git@github.com:ros-infrastructure/vcs2l.git
    version: main
  old_tools/rosinstall:
    type: svn
    url: https://github.com/vcstools/rosinstall/trunk
    version: 748

Export set of repositories

The vcs export command outputs the path, vcs type, URL and version information for all repositories in YAML format. The output is usually piped to a file:

vcs export > my.repos

If the repository is currently on the tip of a branch the branch is followed. This implies that a later import might fetch a newer revision if the branch has evolved in the meantime. Furthermore if the local branch has evolved from the remote repository an import might not result in the exact same state.

To make sure to store the exact revision in the exported data use the command line argument --exact. Since a specific revision is not tied to neither a branch nor a remote (for Git and Mercurial) the tool will check if the current hash exists in any of the remotes. If it exists in multiple the remotes origin and upstream are considered before any other in alphabetical order.

For compatibility with yamllint the output can be formatted by passing the command line argument --lint. This would add the document start and end markers (--- and ...) to the output.

Import set of repositories

The vcs import command clones all repositories which are passed in via stdin in YAML format. Usually the data of a previously exported file is piped in:

vcs import < my.repos

The import command also supports input in the rosinstall file format. Beside passing a file path the command also supports passing a URL.

Only for this command vcs2l supports the pseudo clients tar and zip which fetch a tarball / zipfile from a URL and unpack its content. For those two types the version key is optional. If specified only entries from the archive which are in the subfolder specified by the version value are being extracted.

Delete set of repositories

The vcs delete command removes all directories of repositories which are passed in via stdin in YAML format.

By default, the command performs a dry-run and only lists the directories which would be deleted. In addition, it would convey warnings for missing directories and skip invalid paths upon which no action is taken.

To delete the directories the -f/--force argument must be passed:

$ vcs delete < test/list.repos

Warning: The following paths do not exist:
  ./immutable/hash
  ./immutable/hash_tar
  ./immutable/hash_zip
  ./immutable/tag
  ./without_version
The following paths will be deleted:
  ./vcs2l
Dry-run mode: No directories were deleted. Use -f/--force to delete them.

Validate repositories file

The vcs validate command takes a YAML file which is passed in via stdin and validates its contents and format. The data of a previously-exported file or hand-generated file are piped in:

vcs validate < my.repos

The validate command also supports input in the rosinstall file format.

Advanced features

Show log since last tag

The vcs log command supports the argument --limit-untagged which will output the log for all commits since the last tag.

Parallelization and stdin

By default vcs parallelizes the work across multiple repositories based on the number of CPU cores. In the case that the invoked commands require input from stdin that parallelization is a problem. In order to be able to provide input to each command separately these commands must run sequentially.

When needing to e.g. interactively provide credentials all commands should be executed sequentially by passing:

--workers 1

In the case repositories are using SSH git@ URLs but the host is not known yet vcs import automatically falls back to a single worker.

Run arbitrary commands

The vcs custom command enables to pass arbitrary user-specified arguments to the vcs invocation. The set of repositories to operate on can optionally be restricted by the type:

vcs custom --git --args log --oneline -n 10

If the command should work on multiple repositories make sure to pass only generic arguments which work for all of these repository types.

How to install vcs2l?

On Debian-based platforms the recommended method is to install the package python3-vcs2l. On Ubuntu this is done using apt-get:

If you are using ROS you can get the package directly from the ROS repository:

sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
sudo apt install curl # if you haven't already installed curl
curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install python3-vcs2l

On other systems, use the PyPI package:

pip3 install vcs2l

Setup auto-completion

For the shells bash, tcsh and zsh vcs2l can provide auto-completion of the various VCS commands. In order to enable that feature the shell specific completion file must be sourced.

For bash append the following line to the ~/.bashrc file:

source /usr/share/vcs2l-completion/vcs.bash

For tcsh append the following line to the ~/.cshrc file:

source /usr/share/vcs2l-completion/vcs.tcsh

For zsh append the following line to the ~/.zshrc file:

source /usr/share/vcs2l-completion/vcs.zsh

For fish append the following line to the ~/.config/fishconfig.fish file:

source /usr/share/vcs2l-completion/vcs.fish

How to contribute?

How to report problems?

Before reporting a problem please make sure to use the latest version. Issues can be filled on GitHub after making sure that this problem has not yet been reported.

Please make sure to include as much information, i.e. version numbers from vcs2l, operating system, Python and a reproducible example of the commands which expose the problem.

How to try the latest changes?

Sourcing the setup.sh file prepends the src folder to the PYTHONPATH and the scripts folder to the PATH. Then vcs2l can be used with the commands vcs-COMMAND (note the hyphen between vcs and command instead of a space).

Alternatively the -e/--editable flag of pip can be used:

# from the top level of this repo
pip3 install --user -e .

How to build the documentation?

The documentation is built using Sphinx and can be built locally after installing the package by running:

cd docs
make html

The generated HTML files can be found in docs/build/html/index.html and opened in a web browser.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vcs2l-1.1.7.tar.gz (40.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vcs2l-1.1.7-py3-none-any.whl (49.1 kB view details)

Uploaded Python 3

File details

Details for the file vcs2l-1.1.7.tar.gz.

File metadata

  • Download URL: vcs2l-1.1.7.tar.gz
  • Upload date:
  • Size: 40.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for vcs2l-1.1.7.tar.gz
Algorithm Hash digest
SHA256 1d86e685f9e01dda271b89df1b2bd42ca5555f5c0dcbef5cc727d443f25738cd
MD5 deb30ca68ea7e83ddf392d4769073ec8
BLAKE2b-256 5448898b811816f11262a5030f43664c3eafc5ced986f870f8e6d2abd0121249

See more details on using hashes here.

Provenance

The following attestation bundles were made for vcs2l-1.1.7.tar.gz:

Publisher: release.yml on ros-infrastructure/vcs2l

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vcs2l-1.1.7-py3-none-any.whl.

File metadata

  • Download URL: vcs2l-1.1.7-py3-none-any.whl
  • Upload date:
  • Size: 49.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for vcs2l-1.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 9da3956c49ea869d01e771a0dd38a5c84f0470a90a0a5a8c2ee1577327f68553
MD5 98d15c7614008d01a1dcd534db154ca4
BLAKE2b-256 d275d64c156cd64d23d9c91c2a785858a0ac8c1cc47d89f42d79cbc900533661

See more details on using hashes here.

Provenance

The following attestation bundles were made for vcs2l-1.1.7-py3-none-any.whl:

Publisher: release.yml on ros-infrastructure/vcs2l

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page