diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-31 00:40:50 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2015-10-31 00:40:50 +0100 |
commit | fe1fc1aa7dca3e0f6e54ab17f0acfa45f269e58c (patch) | |
tree | 71af4726ece2d944eedd7b568ec1d7e68fbc5f25 /remote.go | |
parent | fcbb68e3658a7929fe4f7e306fa8e9b602ff48f3 (diff) | |
download | go-git-fe1fc1aa7dca3e0f6e54ab17f0acfa45f269e58c.tar.gz |
clients: Capabilities parsing improvement and GitUploadPackInfo encoding
Diffstat (limited to 'remote.go')
-rw-r--r-- | remote.go | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -77,5 +77,10 @@ func (r *Remote) Ref(refName string) (internal.Hash, error) { return internal.NewHash(""), fmt.Errorf("unable to find ref %q", refName) } - return ref.Id, nil + return ref, nil +} + +// Refs returns the Hash pointing the given refName +func (r *Remote) Refs() map[string]internal.Hash { + return r.upInfo.Refs } |