go module 引用码云(或其他私有仓库)的配置

go module 引用码云(或其他私有仓库)的配置,第1张

概述gomodule引用码云(或其他私有仓库)的配置私有仓库(如码云/gitlab)go1.13开始引入了gomod包管理。go1.16开始默认开启gomod,以下总结在使用gomod时,引用私有仓库或本地仓库出现的问题。此处以windows环境为例,Linux *** 作类似。私有仓库(如码云/gitlab)首先要保证配置过ss

go module 引用码云(或其他私有仓库)的配置私有仓库(如码云/gitlab)

go1.13开始引入了go mod包管理。go1.16开始默认开启go mod,以下总结在使用go mod 时,引用私有仓库或本地仓库出现的问题。此处以windows环境为例,linux *** 作类似。

私有仓库(如码云/gitlab)

首先要保证配置过ssh私钥,即通过git可以直接拉取到私有仓库。
系统环境变量中加入GOPRIVATE变量,值为要过滤的私有地址,如*gitee.com。此处配置作用是通过代理拉取module时过滤掉码云的地址,不通代理拉取私有仓库地址。


此时项目中已经可以正常拉取私有仓库

PS D:\go\src\test\TESTS\test43> go mod initgo: creating new go.mod: module test/TESTS/test43go: to add module requirements and sums:        go mod tIDyPS D:\go\src\test\TESTS\test43> go mod tIDygo: finding module for package gitee.com/xxxxx/xxxxxgo: found gitee.com/xxxxx/xxxxx in gitee.com/xxxxx/xxxxx v0.0.0-20200805075307-22c2dee8df32

go.mod文件:

module test/TESTS/test43go 1.16require gitee.com/xxxxx/xxxxx v0.0.0-20200805075307-22c2dee8df32
总结

以上是内存溢出为你收集整理的go module 引用码云(或其他私有仓库)的配置全部内容,希望文章能够帮你解决go module 引用码云(或其他私有仓库)的配置所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1244656.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存