We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Summarizing #27005 adding go mod tidy -diff would:
go mod tidy -diff
go mod tidy
go mod tidy -check was discussed which would:
go mod tidy -check
go.mod
module example.com
main.go
package main import "rsc.io/quote" func main() { println(quote.Hello()) }
$ go mod tidy -diff diff old go.mod new go.mod --- old go.mod +++ new go.mod @@ -1,1 +1,11 @@ module example.com + +go 1.23 + +require rsc.io/quote v1.5.2 + +require ( + golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect + rsc.io/sampler v1.3.0 // indirect + rsc.io/testonly v1.0.0 // indirect +) $ echo $? 1
The text was updated successfully, but these errors were encountered:
Duplicate of #27005, -diff is fine.
Sorry, something went wrong.
No branches or pull requests
Proposal Details
Proposal:
Summarizing #27005 adding
go mod tidy -diff
would:Motivation:
go mod tidy
Discussion:
go mod tidy -check
was discussed which would:Example:
go.mod
main.go
Implementation pointers:
The text was updated successfully, but these errors were encountered: