如何使用go get获取包的指定版本(标签)?

时间:2016-09-29 03:13:51

标签: go

如何使用go get获取包的指定版本(标记)?

go get github.com/owner/repo

在上面的命令中,如何指定包的版本或标记。

1 个答案:

答案 0 :(得分:2)

Volker是正确的,但这是在项目中使用特定版本的方法:

go get github.com/sirupsen/logrus
cd $GOPATH/src/github.com/sirupsen/logrus
git checkout v0.9.0
cd $GOPATH/src/github.com/YOU/PROJECT
govendor add github.com/sirupsen/logrus  # or similar