2025-03-14 21:59:59 -06:00
|
|
|
# dvc add
|
|
|
|
|
|
|
|
|
|
> Add changed files to the index.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://doc.dvc.org/command-reference/add>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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}}`
|