我正在过渡到使用 golang Dep https://github.com/golang/dep
我们有使用通用代码库的微服务存储库。
它托管在 git.corp.company.com/Organization/common-base
在供应商基础中,我们的项目结构如下
vendor
git.corp.company.com
Organization
common-base
github.com
... online dependencies like aws, garyburd, etc...
golang.org
X
sys
text
当我尝试执行 dep init 时,我收到一条错误消息,例如
unable to deduce repository and source type for "git.corp.company.com/Organization/common-base": unable to read metadata: go-import metadata not found
我不确定为什么会发生这种情况以及下一步该怎么做。我需要将元数据文件添加到我们的通用代码中吗?