HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

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

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thechangedcommandfilesdvc addindexcliadd

Problem

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

Solution

dvc add — Add changed files to the index. More information: <https://doc.dvc.org/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}}

Code Snippets

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}}

Context

tldr-pages: common/dvc add

Revisions (0)

No revisions yet.