美文网首页
Go Module Get Private Repository

Go Module Get Private Repository

作者: 七秒钟回忆待续 | 来源:发表于2020-06-01 17:44 被阅读0次

    go version go1.14

    1. go env -w GOPRIVATE=bitbucket.org
    2. git config url."ssh://git@bitbucket.org/xxx".insteadOf "https://bitbucket.org/xxx"
    3. go mod edit -require=bitbucket.org/xxx/repo@xx-revision
    4. go mod download

    参考文章:

    1. https://blog.golang.org/using-go-modules
    2. https://github.com/golang/go/wiki/Modules

    相关文章

      网友评论

          本文标题:Go Module Get Private Repository

          本文链接:https://www.haomeiwen.com/subject/xfvszhtx.html