我正在使用Godeps来保存我的go项目的依赖项。
现在,我的Godeps.json文件如下所示:
{
"ImportPath": "github.com/some/repo",
"GoVersion": "go1.6",
"GodepVersion": "v74",
"Packages": [
"gopkg.in/mgo.v2",
"github.com/sendgrid/sendgrid-go",
"gopkg.in/olivere/elastic.v3"
],
"Deps": [
{
"ImportPath": "github.com/sendgrid/sendgrid-go",
"Comment": "v2.0.0-22-g6ea8b2b",
"Rev": "6ea8b2b2d54b2e54efcf8668867289a1838d96fd"
},
{
"ImportPath": "github.com/sendgrid/smtpapi-go",
"Comment": "v0.4.0-7-gb88787c",
"Rev": "b88787cc8801ef961d7daef0bcb79ae3f50bfd52"
},
{
"ImportPath": "gopkg.in/check.v1",
"Rev": "4f90aeace3a26ad7021961c297b22c42160c7b25"
},
{
"ImportPath": "gopkg.in/mgo.v2",
"Comment": "r2016.02.04-1-gb6e2fa3",
"Rev": "b6e2fa371e64216a45e61072a96d4e3859f169da"
},
{
"ImportPath": "gopkg.in/mgo.v2/bson",
"Comment": "r2016.02.04-1-gb6e2fa3",
"Rev": "b6e2fa371e64216a45e61072a96d4e3859f169da"
},
{
"ImportPath": "gopkg.in/mgo.v2/internal/sasl",
"Comment": "r2016.02.04-1-gb6e2fa3",
"Rev": "b6e2fa371e64216a45e61072a96d4e3859f169da"
},
{
"ImportPath": "gopkg.in/mgo.v2/internal/scram",
"Comment": "r2016.02.04-1-gb6e2fa3",
"Rev": "b6e2fa371e64216a45e61072a96d4e3859f169da"
},
{
"ImportPath": "gopkg.in/olivere/elastic.v3",
"Comment": "v3.0.40",
"Rev": "7a92d18eaf7a9f95d603e70970fb5adcd4dc62f1"
},
{
"ImportPath": "gopkg.in/olivere/elastic.v3/backoff",
"Comment": "v3.0.40",
"Rev": "7a92d18eaf7a9f95d603e70970fb5adcd4dc62f1"
},
{
"ImportPath": "gopkg.in/olivere/elastic.v3/uritemplates",
"Comment": "v3.0.40",
"Rev": "7a92d18eaf7a9f95d603e70970fb5adcd4dc62f1"
}
]
}如果我想使用go get安装一个新的依赖项:
go get "github.com/robfig/cron"
这将覆盖我的Godeps.json文件,它将只存储我安装的最新包,而且它将从我的vendor文件夹中删除这些包。
如何添加此依赖项而不是替换它?
发布于 2016-06-22 13:21:43
如果您不运行godeps save,那么新的依赖项将不会保存在您的Godeps.json中。虽然很难想象为什么你会想要同一个库的两个版本,但是如果你真的想这样做,那么在你的项目部署过程中,首先执行godep restore,然后安装你的依赖项,因为go get "github.com/robfig/cron".This会阻止替换
https://stackoverflow.com/questions/37936663
复制相似问题