--- syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- # dvc > Data Version Control system for machine learning projects. > Some subcommands such as `commit` have their own usage documentation. > More information: . - Initialize a new DVC project: `dvc init` - Add one or more data files or directories to tracking: `dvc add {{path/to/file_or_directory}}` - Execute a specific subcommand: `dvc {{subcommand}}` - Display help: `dvc {{[-h|--help]}}` - Display help about a specific subcommand: `dvc {{subcommand}} {{[-h|--help]}}` - Display version: `dvc --version`