1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/dvc-gc.md

21 lines
665 B
Markdown
Raw Normal View History

# dvc gc
> Remove unused files and directories from the cache or remote storage.
> More information: <https://dvc.org/doc/command-reference/gc>.
- Garbage collect from the cache, keeping only versions referenced by the current workspace:
`dvc gc --workspace`
- Garbage collect from the cache, keeping only versions referenced by branch, tags, and commits:
`dvc gc --all-branches --all-tags --all-commits`
- Garbage collect from the cache, including the default cloud remote storage (if set):
`dvc gc --all-commits --cloud`
- Garbage collect from the cache, including a specific cloud remote storage:
`dvc gc --all-commits --cloud --remote {{remote_name}}`