mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
529 B
Plaintext
30 lines
529 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# go mod
|
|
|
|
> Module maintenance.
|
|
> More information: <https://pkg.go.dev/cmd/go#hdr-Module_maintenance>.
|
|
|
|
- Initialize new module in current directory:
|
|
|
|
`go mod init {{moduleName}}`
|
|
|
|
- Download modules to local cache:
|
|
|
|
`go mod download`
|
|
|
|
- Add missing and remove unused modules:
|
|
|
|
`go mod tidy`
|
|
|
|
- Verify dependencies have expected content:
|
|
|
|
`go mod verify`
|
|
|
|
- Copy sources of all dependencies into the vendor directory:
|
|
|
|
`go mod vendor`
|