snippetbashTip
go clean — Remove object files and cached files. More information: <https://pkg.go.dev/cmd/go#hdr-Remove_object
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 -nDelete the build cache:
go clean -cacheDelete all cached test results:
go clean -testcacheDelete the module cache:
go clean -modcacheCode Snippets
Print the remove commands instead of actually removing anything
go clean -nDelete the build cache
go clean -cacheDelete all cached test results
go clean -testcacheDelete the module cache
go clean -modcacheContext
tldr-pages: common/go clean
Revisions (0)
No revisions yet.