Use the GOAUTH environment variable to configure how the go command authenticates with private module proxies. Set GOAUTH to a command that outputs credentials for specific URLs, or use built-in methods like netrc or git. For example, to use Git credentials for a specific repository, run: export GOAUTH="git /path/to/git/repo"
How to Use OAuth2 in Go
Configure the GOAUTH environment variable to enable automatic authentication for private Go modules using netrc, git, or custom commands.