美文网首页
Golang Get 私有仓库

Golang Get 私有仓库

作者: 金果儿 | 来源:发表于2020-04-30 17:29 被阅读0次
    • error

      ...... invalid version: unknown revision

    1. 在git 配置文件中添加以下配置:
    [url "ssh://git@github.com/"]
            insteadOf = https://github.com/
    [url "git@github.com:"]
            insteadOf = https://github.com/
    
    1. 设置go的环境变量
    export GOPRIVATE=github.com/私有仓库
    
    1. 可能需要取消GOPROXY代理值。
    2. ~/.netrc配置git登录名和token
    machine github.com login git账户 password [Personal access token]
    

    设置Personal access token

    1. 最后go get Your Repo

    相关文章

      网友评论

          本文标题:Golang Get 私有仓库

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