GoLang: Vendor directory for github branches other than master
Using 3rd party packages from github is made very simple in the Go language with the import statement. But one problem is that “go get” will always pull the HEAD of the master branch and there is no way to explicitly specify another branch. The ultimate answer would be to use a package dependency manager like Glide, which … GoLang: Vendor directory for github branches other than master