$ go help mod

Go mod provides access to operations on modules.

Note that support for modules is built into all the go commands,

not just 'go mod'. For example, day-to-day adding, removing, upgrading,

and downgrading of dependencies should be done using 'go get'.

See 'go help modules' for an overview of module functionality.

 

go mod 提供对模块操作的访问。

请注意,所有 GO 命令都内置了对模块的支持,

不只是“mod” 。例如每天添加,删除,升级。

和降级依赖项应该使用“go get” 完成。

有关模块功能的概述,请参见“go help modules”。

 

Usage:

用法:

go mod <command> [arguments]

go mod 命令    参数

 

The commands are:

命令是:

 

download    download modules to local cache

下载模块到本地缓存

edit        edit go.mod from tools or scripts

从工具或脚本编辑 go.mod 。

graph      print module requirement graph

打印模块依赖图,即 go.sum 的文件内容。

init        initialize new module in current directory

在当前目录下初始化新的模块。

tidy        add missing and remove unused modules

添加没有的和删除不使用的模块。

vendor      make vendored copy of dependencies

创建 vendor 目录并复制依赖的模块到里面。

verify      verify dependencies have expected content

验证依赖项具有预期的内容

why        explain why packages or modules are needed

解释为什么需要包或模块

Use "go help mod <command>" for more information about a command.

使用 “go help mod 命令” 取得更多关于命令的信息。