1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.tr/common/go-clean.md

21 lines
415 B
Markdown
Raw Normal View History

2022-10-31 11:06:43 +01:00
# go clean
> Obje ve önbellek dosyalarını sil.
> Daha fazla bilgi için: <https://golang.org/cmd/go/#hdr-Remove_object_files_and_cached_files>.
- Hiçbir şeyi silmeden silme komutlarını yazdır:
`go clean -n`
- Yapım önbelleğini sil:Delete the build cache:
`go clean -cache`
- Tüm önbelleğe alınan test sonuçlarını sil:
`go clean -testcache`
- Modül önbelleğni sil:
`go clean -modcache`