mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-07 07:45:32 +00:00
26 lines
839 B
Plaintext
26 lines
839 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dvc gc
|
|
|
|
> Remove unused files and directories from the cache or remote storage.
|
|
> More information: <https://doc.dvc.org/command-reference/gc>.
|
|
|
|
- Garbage collect from the cache, keeping only versions referenced by the current workspace:
|
|
|
|
`dvc gc {{[-w|--workspace]}}`
|
|
|
|
- Garbage collect from the cache, keeping only versions referenced by branch, tags, and commits:
|
|
|
|
`dvc gc {{[-a|--all-branches]}} {{[-T|--all-tags]}} {{[-a|--all-commits]}}`
|
|
|
|
- Garbage collect from the cache, including the default cloud remote storage (if set):
|
|
|
|
`dvc gc {{[-a|--all-commits]}} {{[-c|--cloud]}}`
|
|
|
|
- Garbage collect from the cache, including a specific cloud remote storage:
|
|
|
|
`dvc gc {{[-a|--all-commits]}} {{[-c|--cloud]}} {{[-r|--remote]}} {{remote_name}}`
|