From: Lucas Bremgartner Date: Sat, 13 Nov 2021 17:14:24 +0000 (+0100) Subject: Go: Ignore Go workspace file go.work X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F3884%2Fhead;p=gitignore.git Go: Ignore Go workspace file go.work With Go 1.18, support for Go workspaces will land. Go workspaces are configured in `go.work`, which contains paths to local development versions of modules and therefore is not expected to be commited. See: * https://github.com/golang/go/issues/45713 --- diff --git a/Go.gitignore b/Go.gitignore index 66fd13c9..de67df5e 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -13,3 +13,6 @@ # Dependency directories (remove the comment below to include it) # vendor/ + +# Go workspace file +go.work