go mod tidy 设置私有库不走代理

windows:

set GOPRIVATE=gitlab.xx.com
set GOPROXY=https://goproxy.cn
set GONOPROXY=gitlab.xx.com
set GONOSUMDB=gitlab.xx.com

mac

export  GOPRIVATE="gitlab.xx.com"
export  GOPROXY="https://goproxy.cn"
export  GONOPROXY="gitlab.xx.com"
export  GONOSUMDB="gitlab.xx.com"

否则:将 goproxy.cn加到前面

 reading https://goproxy.cn/gitlab.xx.com/jxy/backend_common/@v/v0.0.0-20200313123728-2fe9c6b2d83f.mod  有这样的地址吗

 

go mod tidy 成功之后,关掉IDE或  go build下,飘红才会消失

你可能感兴趣的:(golang)