From: Frank Schroeder Date: Sat, 14 Jul 2018 21:58:07 +0000 (+0000) Subject: cmd/go: run git log with --no-show-signature X-Git-Tag: go1.11beta2~72 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b9a764ffdfa0fd41be6b0cfcd889f2349b14e2b5;p=gostls13.git cmd/go: run git log with --no-show-signature Git timestamp parsing is broken when fetching modules if the local git configuration has 'log.showsignature=true'. Fixes #26388 Change-Id: I47f92381784072335a2a465de56092106c616108 GitHub-Last-Rev: 96f988c0a2dd39a5747ec4a7bad05e7e8ee0d384 GitHub-Pull-Request: golang/go#26389 Reviewed-on: https://go-review.googlesource.com/123958 Reviewed-by: Daniel Martí Reviewed-by: Russ Cox Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot --- diff --git a/src/cmd/go/internal/modfetch/codehost/git.go b/src/cmd/go/internal/modfetch/codehost/git.go index afa046752f..ef23e53775 100644 --- a/src/cmd/go/internal/modfetch/codehost/git.go +++ b/src/cmd/go/internal/modfetch/codehost/git.go @@ -362,7 +362,7 @@ func (r *gitRepo) stat(rev string) (*RevInfo, error) { // statLocal returns a RevInfo describing rev in the local git repository. // It uses version as info.Version. func (r *gitRepo) statLocal(version, rev string) (*RevInfo, error) { - out, err := Run(r.dir, "git", "log", "-n1", "--format=format:%H %ct %D", rev) + out, err := Run(r.dir, "git", "log", "-n1", "--format=format:%H %ct %D", "--no-show-signature", rev) if err != nil { return nil, fmt.Errorf("unknown revision %s", rev) }