代码之家  ›  专栏  ›  技术社区  ›  kozmo

git credential.helper而不是.netrc来获取go依赖项

  •  0
  • kozmo  · 技术社区  · 4 年前

    兑现 我使用的依赖关系 (如 )连接到 goproxy 服务器(因为 nexus 无法直接从获取依赖关系 GitHub )在专用网络之外。


    nexus.some.report.com:4443/repository/go-nexus代理 gonexus.dev nexus.some.report.com:4443/repository/go-proxy proxy.golang.org ...


    GOPROXY="nexus.some.repo.com:4443/repository/go-proxy,nexus.some.repo.com:4443/repository/go-nexus-proxy"
    

    enter image description here

    我使用 .netrc 要连接的文件

    machine nexus.some.repo.com:4443 
    login SOME_LOGIN 
    password SOME_PASS 
    protocol https
    

    我能用一下吗 git credential.helper 而不是 .netrc

    如果 如何配置 git credential.helper

    0 回复  |  直到 4 年前
        1
  •  1
  •   VonC    4 年前

    如果您已经在使用netrc,您可以简单地配置凭据助手以使用netrc

    您可以下载并放入PATH git-credential-netrc.perl

    然后:

    git config --global credential.helper netrc