diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-01 01:31:58 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-01 01:31:58 +0200 |
commit | ad9456267524e08efcf4486cadfb6cef8d182677 (patch) | |
tree | 75ef4e32832eb1442b788ba85ca5df0d16dd8f3f /clients | |
parent | 2ca4ab90ec5d4c430ac891a4edd5014d7043d539 (diff) | |
download | go-git-ad9456267524e08efcf4486cadfb6cef8d182677.tar.gz |
doc packages
Diffstat (limited to 'clients')
-rw-r--r-- | clients/common.go | 10 | ||||
-rw-r--r-- | clients/common/common.go | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/clients/common.go b/clients/common.go index 1eeacf0..c28c465 100644 --- a/clients/common.go +++ b/clients/common.go @@ -1,10 +1,12 @@ -// Go-git needs the packfile and the refs of the repo. The +// Package clients includes the implementation for diferent transport protocols +// +// go-git needs the packfile and the refs of the repo. The // `NewGitUploadPackService` function returns an object that allows to // download them. // -// Go-git supports HTTP and SSH (see `KnownProtocols`) for downloading -// the packfile and the refs, but you can also install your own -// protocols (see `InstallProtocol` below). +// go-git supports HTTP and SSH (see `Protocols`) for downloading the packfile +// and the refs, but you can also install your own protocols (see +// `InstallProtocol` below). // // Each protocol has its own implementation of // `NewGitUploadPackService`, but you should generally not use them diff --git a/clients/common/common.go b/clients/common/common.go index b5e6152..1518081 100644 --- a/clients/common/common.go +++ b/clients/common/common.go @@ -1,4 +1,4 @@ -// Package common contains utils used by the clients +// Package common contains interfaces and non-specific protocol entities package common import ( |