2020-05-08 13:40:44 +01:00
|
|
|
# go clean
|
|
|
|
|
2020-05-11 04:50:47 +01:00
|
|
|
> Remove object files and cached files.
|
|
|
|
> More information: <https://golang.org/cmd/go/#hdr-Remove_object_files_and_cached_files>.
|
2020-05-08 13:40:44 +01:00
|
|
|
|
2020-05-14 17:01:50 +01:00
|
|
|
- Print the remove commands instead of actually removing anything:
|
2020-05-08 13:40:44 +01:00
|
|
|
|
|
|
|
`go clean -n`
|
|
|
|
|
2020-05-14 17:01:50 +01:00
|
|
|
- Delete the build cache:
|
2020-05-08 13:40:44 +01:00
|
|
|
|
|
|
|
`go clean -cache`
|
|
|
|
|
2020-05-14 17:01:50 +01:00
|
|
|
- Delete all cached test results:
|
2020-05-08 13:40:44 +01:00
|
|
|
|
|
|
|
`go clean -testcache`
|
|
|
|
|
2020-05-14 17:01:50 +01:00
|
|
|
- Delete the module cache:
|
2020-05-08 13:40:44 +01:00
|
|
|
|
|
|
|
`go clean -modcache`
|