I'm trying to get a good understanding of Go modules and am a bit puzzled by the difference between the go get command and the go mod download command.
"The go get command updates module dependencies in the go.mod file for the main module, then builds and installs packages listed on the command line." https://golang.org/ref/mod#go-get
Whereas the Go mod download is described as :
"The go mod download command downloads the named modules into the module cache. " https://golang.org/ref/mod#go-mod-download
Clearly go get performs some dependency management which go mod download does not, but what is the difference between installing packages with go get and downloading modules to the module cache in go mod download.