1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-10 23:45:23 +02:00
tldr/pages/common/uv-cache.md
Meinard Francisco 595818316a
uv-{build,cache,export,publish,self}: add pages (#16906)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-06-21 04:14:05 +05:30

32 lines
665 B
Markdown

# uv cache
> Manage `uv`'s global cache directory.
> More information: <https://docs.astral.sh/uv/reference/cli/#uv-cache>.
- Show the cache directory path:
`uv cache dir`
- Clean the entire cache (removes all cached packages and environments):
`uv cache clean`
- Clean the cache for specific packages:
`uv cache clean {{package1 package2 ...}}`
- Prune all unreachable objects from the cache:
`uv cache prune`
- Prune cache optimized for CI environments like GitHub Actions:
`uv cache prune --ci`
- Use a specific cache directory:
`uv cache clean --cache-dir {{path/to/cache}}`
- Clean cache with verbose output:
`uv cache clean {{[-v|--verbose]}}`