go*: add Turkish translation (#9447)

This commit is contained in:
Tan Siret A
2022-10-31 11:06:43 +01:00
committed by GitHub
parent afac125d3c
commit d0ace9faf9
18 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# go install
> İçe aktarım yollarıyla isimlendirilen paketleri derle ve indir.
> Daha fazla bilgi için: <https://pkg.go.dev/cmd/go#hdr-Compile_and_install_packages_and_dependencies>.
- Mevcut paketi derle ve indir:
`go install`
- Belirtilen yerel paketi derle ve indir:
`go install {{örnek/konum/paket}}`
- Bir programın son sürümünü mevcut dizindeki `go.mod`'u yoksayarak indir:
`go install {{golang.org/x/tools/gopls}}@{{latest}}`
- Bir programın mevcut dizindeki `go.mod`'da belirtilen sürümünü indir:
`go install {{golang.org/x/tools/gopls}}`