Forrest logo
back to context overview

go-clean

List of commands for go-clean:

  • go-clean:tldr:67267 go-clean: Delete all cached test results.
    $ go clean -testcache
    try on your machine
    explain this command
  • go-clean:tldr:73dab go-clean: Delete the build cache.
    $ go clean -cache
    try on your machine
    explain this command
  • go-clean:tldr:9191a go-clean: Delete the module cache.
    $ go clean -modcache
    try on your machine
    explain this command
  • go-clean:tldr:d7b1b go-clean: Print the remove commands instead of actually removing anything.
    $ go clean -n
    try on your machine
    explain this command
back to context overview