diff options
author | Daishan Peng <StrongMonkey@users.noreply.github.com> | 2021-01-27 02:48:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 10:48:41 +0100 |
commit | 1b1a61ad07f40197d3b9164821a096abd1710628 (patch) | |
tree | 7adecc024d32e52a54d919769941015308cf2bf1 /plumbing/transport/common.go | |
parent | c6c9b100c97e356a653692fbed48cf8711d3e2a6 (diff) | |
download | go-git-1b1a61ad07f40197d3b9164821a096abd1710628.tar.gz |
Add insecureSkipTLS and cabundle (#228)
This PR add insecureSkipTLSVerify and cabundle to any remote http calls
so that https repo with private CA signed can be used. This is the
equivalent of https.sslVerify and GIT_SSL_CAINFO
Diffstat (limited to 'plumbing/transport/common.go')
-rw-r--r-- | plumbing/transport/common.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plumbing/transport/common.go b/plumbing/transport/common.go index ead2155..b993c4e 100644 --- a/plumbing/transport/common.go +++ b/plumbing/transport/common.go @@ -107,6 +107,10 @@ type Endpoint struct { Port int // Path is the repository path. Path string + // InsecureSkipTLS skips ssl verify if protocal is https + InsecureSkipTLS bool + // CaBundle specify additional ca bundle with system cert pool + CaBundle []byte } var defaultPorts = map[string]int{ |