Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
go
/
Tidy up module dependencies
Tidy up module dependencies
go
Add missing and remove unused module dependencies
go mod tidy
⎘ copy
#go
more go
all 10 commands →
Vendor dependencies
go mod vendor
CPU profiling
go test -cpuprofile=cpu.prof -bench=. ./... && go tool pprof cpu.prof
List all packages
go list ./...
Format all code
gofmt -w .
Static analysis with vet
go vet ./...