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