Using VS Team Services with go get
I use VS Team Services for some of my repositories. I use the Git repository type, and most of the time everything works fine. Until today I reorganized some of my Go code to be more idiomatic, meaning that I leverage the native Go package system as it is designed: the only way to reference packages is by their full repository URL: package main using ( "myorg.visualstudio.com/DefaultCollection/_git/MyRepo" ) and you can also load packages with Go get command, like: ...