From: Michael Pratt Date: Mon, 3 Nov 2025 20:51:27 +0000 (-0500) Subject: .gitignore: ignore go test artifacts X-Git-Tag: go1.26rc1~334 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a0eb4548cf;p=gostls13.git .gitignore: ignore go test artifacts go test -artifacts writes artifacts to _artifacts. These are outputs from a specific test and are never intended to be commited. Change-Id: I6a6a636cd7689e5e664b190c83ccb93060f26d4e Reviewed-on: https://go-review.googlesource.com/c/go/+/717521 Reviewed-by: Michael Knyszek Reviewed-by: Damien Neil LUCI-TryBot-Result: Go LUCI Auto-Submit: Michael Pratt --- diff --git a/.gitignore b/.gitignore index c6512e64a4..344b31f7ac 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,7 @@ _testmain.go /misc/cgo/testso/main /pkg/ /src/*.*/ +/src/_artifacts/ /src/cmd/cgo/zdefaultcc.go /src/cmd/dist/dist /src/cmd/go/internal/cfg/zdefaultcc.go