Earlier quoted context omitted.
Isn't "go get ..." the dependency management tool for Go?
Not really. Only works for source code packages, not binary dependencies. There isn't a way to specific source code versions/tags in a portable way. Also makes the import paths dependent on your repositories.
> [go get] Only works for source code packages, not
> binary dependencies.
There's no such thing as a binary dependency in the Go ecosystem. (At least, not without stretching some definitions.) It's one of Go's greatest strengths, actually. > There isn't a way to specific source code versions/tags
> in a portable way.
Well, the best practice is to vendor[0], and there are plenty of third-party tools like godep[1] that can manage it for you.___
[0] http://peter.bourgon.org/go-in-production/#dependency-manage...