- ? ? go clean ? ?- To delete all the created executables in the current directory
- ? ? go doc ? ? ?- For displaying documentation about the libraries
- ? ? go env ? ? ?- print Go environment information
- ? ? go fmt ? ? ?- reformats source files using Go standard formatting
- ? ? go get ? ? ?- For retrieving and installing remote packages
- ? ? go install ?- To install the executable
- ? ? go list ? ? - list packages
- ? ? go run ? ? ?- compiles and runs a program, without saving an executable file
- ? ? go test ? ? - For unit testing and micro-benchmarks
- ? ? go version ?- Displays the current Go version
- ? ? go vet ? ? ?- Static Analyzer looking for potential errors in code
- ? ? go generate - Standard way to invoke code generators
- ? ? go rename ? - For renaming variables, functions, and so on in a type-safe way
- ? ? go fix ? ? ?- upgrade code from an old version before go1 to a new version after go1
- ? ? go build ? ?- compiles source code files into binary files