go module使用

新建一个MODULE1、go mod init project-name2、git push git-url3、git tag 版本4、本地使用获取 go get git-url 版本号 版本在go.mod中的包后面手动输入latest github.com/nfnt/resize latest,go将自动(...

新建一个MODULE

1、go mod init  project-name

2、git push git-url

3、git tag 版本

4、本地使用获取 go get  git-url  版本号

 

版本

go.mod中的包后面手动输入latest github.com/nfnt/resize latest,go将自动(go list)帮你生成一个版本号 github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646

引用别人的包的时候可以在go.mod 中指定version的版本,但是什么都不指定也可以,默认是latest,也就是你直接go get github.com/xx/app的时候它自动就是引入latest的版本了

要指定某个版本,你在go.mod 改了就行

无法使用goalng.org/x的包

使用github上的镜像包 例如说是 github.com/golang/x/net/html 在你的项目的go.mod 中 加入 replace golang.org/x/net/html => github.com/golang/x/net/html

本文标题为:go module使用