主页

索引

模块索引

搜索页面

1.3.7. Go包管理

  • Go 模块idea使用指南 [1]

  • 介绍1 [2]

  • 介绍2 [3]

go get引入私有git库 [4]

git config --global url."git@gitee.com:".insteadof "https://gitee.com/"

关掉 GO 代理 拉取代码
export GOPROXY=

// 如果没有用https或证书
go get -v   -insecure  gitcodecloud.zhaoweiguo.com.cn/tools/dauth

历史管理方法

  • deps管理依赖 [5]

  • godep, glide, or dep

  • 各管理依赖对比 [6]

  • gopkg.in: Go的包管理解决方案之一,就是gopkg.in做了一个转发过程,实际上是使用了github里面的相应的tag的代码

相关参考

主页

索引

模块索引

搜索页面