File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -2272,7 +2272,7 @@ requirements and to drop unused requirements.
2272
2272
Usage:
2273
2273
2274
2274
```
2275
- go mod tidy [-e] [-v] [-go=version] [-compat=version]
2275
+ go mod tidy [-e] [-v] [-x] [-diff] [- go=version] [-compat=version]
2276
2276
```
2277
2277
2278
2278
` 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.
2287
2287
The ` -v ` flag causes ` go mod tidy ` to print information about removed modules
2288
2288
to standard error.
2289
2289
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
+
2290
2297
` go mod tidy ` works by loading all of the packages in the [ main
2291
2298
module] ( #glos-main-module ) , all of its tools, and all of the packages they import,
2292
2299
recursively. This includes packages imported by tests (including tests in other
You can’t perform that action at this time.
0 commit comments