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 install
> import 경로로 지정된 패키지를 컴파일하고 설치.
> 더 많은 정보: <https://pkg.go.dev/cmd/go#hdr-Compile_and_install_packages_and_dependencies>.
- 현재 패키지를 컴파일하고 설치:
`go install`
- 특정 로컬 패키지를 컴파일하고 설치:
`go install {{경로/대상/패키지}}`
- 현재 디렉토리의 `go.mod`를 무시하고 프로그램의 최신 버전 설치:
`go install {{golang.org/x/tools/gopls}}@{{최신}}`
- 현재 디렉토리의 `go.mod`에 의해 선택된 버전으로 프로그램 설치:
`go install {{golang.org/x/tools/gopls}}`