mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-15 04:59:56 +00:00
Update cheatsheets
This commit is contained in:
21
go-get
Normal file
21
go-get
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user