https://github.com/fracpete/tvc
"tandem version control" is a simple Python library for combining git and dvc commands that are typically issued in tandem.
https://github.com/fracpete/tvc
dvc git python3 version-control
Last synced: about 2 months ago
JSON representation
"tandem version control" is a simple Python library for combining git and dvc commands that are typically issued in tandem.
- Host: GitHub
- URL: https://github.com/fracpete/tvc
- Owner: fracpete
- License: mit
- Created: 2025-09-23T20:26:25.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-24T01:25:42.000Z (9 months ago)
- Last Synced: 2025-09-24T03:25:05.500Z (9 months ago)
- Topics: dvc, git, python3, version-control
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
# tvc
**tandem version control** is a simple Python library for combining
[git](https://git-scm.com/) and [dvc](https://dvc.org/) commands that
are typically issued in tandem.
## Prerequisites
Since tvc is just a simple wrapper, you need to make sure that the following
are installed on your system and their executables are available from the
PATH environment variable:
* [git](https://git-scm.com/)
* [dvc](https://dvc.org/)
## Installation
Via PyPI:
```bash
pip install tvc
```
The latest code straight from the repository:
```bash
pip install git+https://github.com/fracpete/tvc.git
```