_content/ref: mention '-reuse' flag in go mod download section

The section was copied from `go help mod download`.

Change-Id: Icca24cf1cbd4051332df21843ffd2ff818d77d2d
Reviewed-on: https://go-review.googlesource.com/c/website/+/463875
Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
This commit is contained in:
Hana (Hyang-Ah) Kim 2023-01-27 10:43:04 -05:00 коммит произвёл Hyang-Ah Hana Kim
Родитель bdf3f823b5
Коммит 381c3ae6b2
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -1825,7 +1825,7 @@ field.
Usage:
```
go mod download [-json] [-x] [modules]
go mod download [-x] [-json] [-reuse=old.json] [modules]
```
Example:
@ -1873,6 +1873,14 @@ type Module struct {
The `-x` flag causes `download` to print the commands `download` executes
to standard error.
The -reuse flag accepts the name of file containing the JSON output of a
previous 'go mod download -json' invocation. The go command may use this
file to determine that a module is unchanged since the previous invocation
and avoid redownloading it. Modules that are not redownloaded will be marked
in the new output by setting the Reuse field to true. Normally the module
cache provides this kind of reuse automatically; the -reuse flag can be
useful on systems that do not preserve the module cache.
### `go mod edit` {#go-mod-edit}
Usage: