diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-12-12 15:50:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 15:50:15 +0100 |
commit | df9748cfb51db9c406e3df063badbd8c78ee819d (patch) | |
tree | c03578daefa14b14ca480c3e801ee8e225599b22 /plumbing/transport/client | |
parent | 3967812bd0de40330dfbb9e1a7d14d4073cc1b10 (diff) | |
download | go-git-df9748cfb51db9c406e3df063badbd8c78ee819d.tar.gz |
transport: new git protocol (#175)
Diffstat (limited to 'plumbing/transport/client')
-rw-r--r-- | plumbing/transport/client/client.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plumbing/transport/client/client.go b/plumbing/transport/client/client.go index 770b7dc..095c51d 100644 --- a/plumbing/transport/client/client.go +++ b/plumbing/transport/client/client.go @@ -5,6 +5,7 @@ import ( "gopkg.in/src-d/go-git.v4/plumbing/transport" "gopkg.in/src-d/go-git.v4/plumbing/transport/file" + "gopkg.in/src-d/go-git.v4/plumbing/transport/git" "gopkg.in/src-d/go-git.v4/plumbing/transport/http" "gopkg.in/src-d/go-git.v4/plumbing/transport/ssh" ) @@ -14,6 +15,7 @@ var Protocols = map[string]transport.Client{ "http": http.DefaultClient, "https": http.DefaultClient, "ssh": ssh.DefaultClient, + "git": git.DefaultClient, "file": file.DefaultClient, } |