Skip to content

Commit 9d27ca2

Browse files
willbolandgopherbot
authored andcommitted
_content/ref/mod: add -x and -diff flags to go mod tidy
Existing documentation for go mod tidy is missing -x and -diff flags. Adds these flags to the documentation. Fixes golang/go#69936 Change-Id: I00764066684461d38684b5711a17483819b50904 GitHub-Last-Rev: 8266f04 GitHub-Pull-Request: #304 Reviewed-on: https://go-review.googlesource.com/c/website/+/639275 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Sam Thanawalla <[email protected]>
1 parent a9d101e commit 9d27ca2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

_content/ref/mod.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2272,7 +2272,7 @@ requirements and to drop unused requirements.
22722272
Usage:
22732273

22742274
```
2275-
go mod tidy [-e] [-v] [-go=version] [-compat=version]
2275+
go mod tidy [-e] [-v] [-x] [-diff] [-go=version] [-compat=version]
22762276
```
22772277

22782278
`go mod tidy` ensures that the `go.mod` file matches the source code in the
@@ -2287,6 +2287,12 @@ despite errors encountered while loading packages.
22872287
The `-v` flag causes `go mod tidy` to print information about removed modules
22882288
to standard error.
22892289

2290+
The `-x` flag causes `go mod tidy` to print the commands `tidy` executes.
2291+
2292+
The `-diff` flag causes `go mod tidy` not to modify go.mod or go.sum but
2293+
instead print the necessary changes as a unified diff. It exits
2294+
with a non-zero code if the diff is not empty.
2295+
22902296
`go mod tidy` works by loading all of the packages in the [main
22912297
module](#glos-main-module), all of its tools, and all of the packages they import,
22922298
recursively. This includes packages imported by tests (including tests in other

0 commit comments

Comments
 (0)