logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Go Clean - Remove Go Object Files | Online Free DevTools by Hexmos

Clean Go object files and cached data with Go Clean. Streamline your Go development workflow and optimize build processes. Free online tool, no registration required.

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

See Also