Files
tldr/pages.tr/common/go-clean.md
2022-10-31 07:06:43 -03:00

21 lines
415 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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`