go clean
Remove object files and cached files. More information: https://golang.org/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
License and Disclaimer
The content on this page is copyright © 2014—present the tldr-pages team and contributors.This page is used with permission under Creative Commons Attribution 4.0 International License.
While we do attempt to make sure content is accurate, there isn't a warranty of any kind.