go,go-*,gofmt,goimports,golangci-lint: add Korean translation (#14190)

This commit is contained in:
코드싸이
2024-10-14 16:51:00 +09:00
committed by GitHub
parent 90ac2d50cd
commit 75d7e53411
21 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# go clean
> 오브젝트 파일과 캐시 파일 제거.
> 더 많은 정보: <https://golang.org/cmd/go/#hdr-Remove_object_files_and_cached_files>.
- 실제로 제거하지 않고 제거 명령 출력:
`go clean -n`
- 빌드 캐시 삭제:
`go clean -cache`
- 모든 캐시된 테스트 결과 삭제:
`go clean -testcache`
- 모듈 캐시 삭제:
`go clean -modcache`