tldr/pages/common/dvc-add.md
Puneetha Pai a398529a92 Apply suggestions from code review by @einverne
Co-authored-by: Ein Verne <git@einverne.info>
2020-08-21 23:53:25 +01:00

467 B

dvc add

Add changed files to the index. More information: https://dvc.org/doc/command-reference/add.

  • Add a single target file to the index:

dvc add {{path/to/file}}

  • Add a target directory to the index:

dvc add {{path/to/directory}}

  • Recursively add all the files in a given target directory:

dvc add --recursive {{path/to/directory}}

  • Add a target file with a custom .dvc filename:

dvc add --file {{custom_name.dvc}} {{path/to/file}}