go build(see below): builds / compiles your code into a binary or librarygo install(see below): the same asgo build, plus installs binaries into $GOPATH/bin and libraries to $GOPATH/pkggo get: downloads source code and dependencies, then perform ago installgo test(see below): compile and run tests in the given package(s)go vet: check code for common coding errors
https://github.com/RHCloudServices/golang-intro