mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-03 07:35:24 +02:00
368 B
368 B
go clean
移除目标文件和缓存文件。 更多信息:https://pkg.go.dev/cmd/go#hdr-Remove_object_files_and_cached_files.
- 只打印移除命令,而不会真正移除任何东西:
go clean -n
- 删除编译缓存:
go clean -cache
- 删除所有测试结果缓存:
go clean -testcache
- 删除模块缓存:
go clean -modcache