From a0eb4548cfcf803da087b7ca461a2d48b9f17a58 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Mon, 3 Nov 2025 15:51:27 -0500 Subject: [PATCH] .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 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c6512e64a4e..344b31f7ac1 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