aboutsummaryrefslogtreecommitdiffstats
path: root/examples/custom_http
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-12-12 15:50:03 +0100
committerGitHub <noreply@github.com>2016-12-12 15:50:03 +0100
commit3967812bd0de40330dfbb9e1a7d14d4073cc1b10 (patch)
treedbd5df2a66bdd50df40fd773e1d1ec284483ecfe /examples/custom_http
parent6f701ecc18909959364b708b8efddd03cf4e809c (diff)
downloadgo-git-3967812bd0de40330dfbb9e1a7d14d4073cc1b10.tar.gz
examples: review, testing and documentation (#176)
* examples reviews, testing and documentation * including the execution on travis, and fix readme * fix example link * including the execution on travis
Diffstat (limited to 'examples/custom_http')
-rw-r--r--examples/custom_http/main.go55
1 files changed, 55 insertions, 0 deletions
diff --git a/examples/custom_http/main.go b/examples/custom_http/main.go
new file mode 100644
index 0000000..0853569
--- /dev/null
+++ b/examples/custom_http/main.go
@@ -0,0 +1,55 @@
+package main
+
+import (
+ "crypto/tls"
+ "fmt"
+ "net/http"
+ "os"
+ "time"
+
+ "gopkg.in/src-d/go-git.v4"
+ . "gopkg.in/src-d/go-git.v4/examples"
+ "gopkg.in/src-d/go-git.v4/plumbing/transport/client"
+ githttp "gopkg.in/src-d/go-git.v4/plumbing/transport/http"
+)
+
+// Here is an example to configure http client according to our own needs.
+func main() {
+ CheckArgs("<url>")
+ url := os.Args[1]
+
+ // Create a custom http(s) client with your config
+ customClient := &http.Client{
+ // accept any certificate (might be useful for testing)
+ Transport: &http.Transport{
+ TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
+ },
+
+ // 15 second timeout
+ Timeout: 15 * time.Second,
+
+ // don't follow redirect
+ CheckRedirect: func(req *http.Request, via []*http.Request) error {
+ return http.ErrUseLastResponse
+ },
+ }
+
+ // Override http(s) default protocol to use our custom client
+ client.InstallProtocol("https", githttp.NewClient(customClient))
+
+ // Create an in-memory repository
+ r := git.NewMemoryRepository()
+
+ // Clone repository using the new client if the protocol is https://
+ Info("git clone %s", url)
+
+ err := r.Clone(&git.CloneOptions{URL: url})
+ CheckIfError(err)
+
+ // Retrieve the branch pointed by HEAD
+ Info("git rev-parse HEAD")
+
+ head, err := r.Head()
+ CheckIfError(err)
+ fmt.Println(head.Hash())
+}