File: //opt/golang/1.22.0/src/cmd/go/testdata/script/mod_download_git_bareRepository.txt
[short] skip
[!git] skip
# Redirect git to a test-specific .gitconfig.
# GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
# For older git versions we also set $HOME.
env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
env HOME=$WORK${/}home${/}gopher
exec git config --global --show-origin user.name
stdout 'Go Gopher'
env GOPRIVATE=vcs-test.golang.org
go mod download -x
-- go.mod --
module test
go 1.18
require vcs-test.golang.org/git/gitrepo1.git v1.2.3
-- $WORK/home/gopher/.gitconfig --
[user]
name = Go Gopher
email = [email protected]
[safe]
bareRepository = explicit