我正在使用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安装新的依赖项,请执行以下操作:
go get "github.com/robfig/cron"
这将覆盖我的
Godeps.json
文件,并且将仅存储我已安装的最新软件包,并且还会存储更多文件。如何添加此依赖关系而不是替换它?
最佳答案
如果不运行godeps save
,则新的依赖项将不会保存在Godeps.json中。很难想象为什么您会想要同一个库的两个版本,但是如果您确实要这么做,那么在项目部署期间,请先执行godep restore
,然后将依赖项安装为go get "github.com/robfig/cron"
,这样可以防止替换
关于go - golang + Godeps:添加新的依赖项覆盖Godeps.json文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37936663/