til/Development/Go/Modules.md

524 B

Modules

First time:

go mod init

Daily workflow:

# Update modules
go get -u ./...

# Install module with chosen commit or version
go get public.git.com/module@version

# Prune no longer used modules
go mod tidy

# Copy modules to local vendor directory
go mod vendor

Update go version:

go mod edit -go=1.XY

In world of corporation, we work with private repository, add to ~/.bashrc, ~/.zshrc:

export GOPRIVATE=private.git.com