1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

go-get: add page (#6491)

This commit is contained in:
diver 2021-09-14 09:45:13 -04:00 committed by GitHub
parent ac306cf148
commit 82d63f39bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,16 @@
# go get
> Add a dependency package, or download packages in legacy GOPATH mode.
> More information: <https://pkg.go.dev/cmd/go#hdr-Add_dependencies_to_current_module_and_install_them>.
- Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
`go get {{example.com/pkg}}`
- Modify the package with a given version in module-aware mode:
`go get {{example.com/pkg}}@{{v1.2.3}}`
- Remove a specified package:
`go get {{example.com/pkg}}@{{none}}`