You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go mod 是Golang 1.11 版本引入的官方包(package)依赖管理工具,用于解决之前没有地方记录依赖包具体版本的问题,方便依赖包的管理。之前Golang 主要依靠vendor和GOPATH来管理依赖库,vendor相对主流,但现在官方更提倡go mod。 介绍的是go 1.3配合goland 2019.3的使用方法
GO MODULE可以设置为三个字符串值之一:off,on或auto(默认值)。
off 则go命令从不使用新模块支持。它查找vendor 目录和GOPATH以查找依赖关系;也就是继续使用“GOPATH模式”。
on 则go命令需要使用模块,go 会忽略 $GOPATH 和 vendor 文件夹,只根据go.mod下载依赖。
auto 或未设置,则go命令根据当前目录启用或禁用模块支持。仅当当前目录位于$GOPATH/src之外并且其本身包含go.mod文件或位于包含go.mod文件的目录下时,才启用模块支持。
go help modules
go mod命令
download download modules to local cache (下载依赖的module到本地cache))
edit edit go.mod from tools or scripts (编辑go.mod文件)
graph print module requirement graph (打印模块依赖图))
init initialize new module in current directory (再当前文件夹下初始化一个新的module, 创建go.mod文件))
tidy add missing and remove unused modules (增加丢失的module,去掉未用的module)
vendor make vendored copy of dependencies (将依赖复制到vendor下)
verify verify dependencies have expected content (校验依赖)
why explain why packages or modules are needed (解释为什么需要依赖)
初始化mod
go mod init [module]可以创建一个go.mod,只有一行信息module。
将依赖复制到项目路径的vendor文件夹中
go mod vendor
忽略cache里的包,只使用vendor目录里的依赖进行编译
go build -mod=vendor
校验依赖并查看是否有修改
go mod verify
指定module的根目录并生成go.mod文件
go mod init example.com/hello
查看module下的所有依赖
go list -m all
下载 go.mod 文件中指明的所有依赖
go mod download
查看现有的依赖结构
go mod graph
拉取依赖,会进行指定性拉取(更新),并不会更新所依赖的其它模块。
go get
更新现有的依赖,会强制更新它所依赖的其它全部模块,不包括自身。
go get -u
更新所有直接依赖和间接依赖的模块版本,包括单元测试中用到的。
go get -u -t ./...
拉取最新的版本,若存在tag,则优先使用。
go get golang.org/x/text@latest
拉取 master 分支的最新 commit。
go get golang.org/x/text@master
拉取 tag 为 v0.3.2 的 commit
go get golang.org/x/[email protected]
拉取 hash 为 342b231 的 commit,最终会被转换为 v0.3.2
go get golang.org/x/text@342b2e
全局设置GOSUMDB
go env -w GOSUMDB="sum.golang.org"
go mod 是Golang 1.11 版本引入的官方包(package)依赖管理工具,用于解决之前没有地方记录依赖包具体版本的问题,方便依赖包的管理。之前Golang 主要依靠vendor和GOPATH来管理依赖库,vendor相对主流,但现在官方更提倡go mod。
介绍的是go 1.3配合goland 2019.3的使用方法
GO MODULE可以设置为三个字符串值之一:off,on或auto(默认值)。
以kratos/go.mod为例:
go命令通过查找当前目录中的go.mod或者当前目录的父目录,或者祖父目录,依次递归查找。
go.mod文件可以通过require,replace和exclude语句使用的精确软件包集。
go mod download可以下载所需要的依赖,但是依赖并不是下载到GOPATH中,而是GOPATH/pkg/mod中,多个项目可以共享缓存的module。
go clean -modcache 清除缓存
在国内访问 golang.org/x 的各个包都需要翻墙,
你可以在go.mod中使用replace替换成github上对应的库。
The text was updated successfully, but these errors were encountered: