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

16
pages.ko/common/go-get.md Normal file
View File

@@ -0,0 +1,16 @@
# go get
> 의존성 패키지를 추가하거나 레거시 GOPATH 모드에서 패키지를 다운로드.
> 더 많은 정보: <https://pkg.go.dev/cmd/go#hdr-Add_dependencies_to_current_module_and_install_them>.
- 모듈 모드에서 `go.mod`에 지정된 패키지를 추가하거나 GOPATH 모드에서 패키지 설치:
`go get {{example.com/pkg}}`
- 모듈 인식 모드에서 지정된 버전으로 패키지 수정:
`go get {{example.com/pkg}}@{{v1.2.3}}`
- 지정된 패키지 제거:
`go get {{example.com/pkg}}@{{none}}`