HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

go clean — Remove object files and cached files. More information: <https://pkg.go.dev/cmd/go#hdr-Remove_object

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandobjectremovefilesandcligo cleancached

Problem

How to use the go clean command: Remove object files and cached files. More information: <https://pkg.go.dev/cmd/go#hdr-Remove_object_files_and_cached_files>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/go clean

Revisions (0)

No revisions yet.