Skip to content

Commit 09ca28f

Browse files
committed
_content/ref/mod: add -x and -diff flags to go mod tidy
1 parent 500af5d commit 09ca28f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

_content/ref/mod.md

+8-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,13 @@ 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+
when downloading the current module's packages and dependencies.
2292+
2293+
The `-diff` flag causes `go mod tidy` not to modify go.mod or go.sum but
2294+
instead print the necessary changes as a unified diff. It exits
2295+
with a non-zero code if the diff is not empty.
2296+
22902297
`go mod tidy` works by loading all of the packages in the [main
22912298
module](#glos-main-module), all of its tools, and all of the packages they import,
22922299
recursively. This includes packages imported by tests (including tests in other

0 commit comments

Comments
 (0)