1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 10:35:23 +02:00
tldr/pages/common/go-clean.md
2025-06-28 15:06:36 -07:00

379 B

go clean

Remove object files and cached files. More information: https://pkg.go.dev/cmd/go#hdr-Remove_object_files_and_cached_files.

  • Print the remove commands instead of actually removing anything:

go clean -n

  • Delete the build cache:

go clean -cache

  • Delete all cached test results:

go clean -testcache

  • Delete the module cache:

go clean -modcache