从远程主机获取接受自签名证书

I'd like to be able to go get from my Stash server with a nice URL. My stash server works only over HTTPS. The problem is that my SSL certificate I'm using with stash is self-signed and any go get to my server gets me the following error:

x509: certificate signed by unknown authority

Is there a way to authorize self-signed certificates from go get?

Use go get -insecure https://xxxxx.

From go get -h:

The -insecure flag permits fetching from repositories and resolving custom domains using insecure schemes such as HTTP. Use with caution.