I'm trying to run go get -u -v
in my application repository, but I'm receiving an error:
$ go get -u -v
package */*/*: cannot download, http://*.com/*/*.git uses insecure protocol
The self-hosted Git repository runs with http
, not https
. How to force it to use http
and forget about https
?