I am transitioning over to use golang Dep https://github.com/golang/dep
We have repositories for microservices that use a common code base.
Its hosted at git.corp.company.com/Organization/common-base
in vendor base we have a projects structure as follows
vendor
git.corp.company.com
Organization
common-base
github.com
... online dependencies like aws, garyburd, etc...
golang.org
X
sys
text
When I try to do dep init, I get an error message like
unable to deduce repository and source type for "git.corp.company.com/Organization/common-base": unable to read metadata: go-import metadata not found
I'm not sure why that is happening and what to do next. Do I need to add in the metadata file to our common code?