aboutsummaryrefslogtreecommitdiffstats
path: root/remote.go
diff options
context:
space:
mode:
authorSunny <me@darkowlzz.space>2017-10-04 01:59:13 +0530
committerSunny <me@darkowlzz.space>2017-10-04 01:59:13 +0530
commit4d0c2cccb890be585b74fea3805db6e555f42cfc (patch)
tree1ffa756b197c8e38b10e019fd1e0aa3e16be0f19 /remote.go
parent7172e04fe7e000d8826f0402dd7f70d8b3d55072 (diff)
downloadgo-git-4d0c2cccb890be585b74fea3805db6e555f42cfc.tar.gz
Create ListOptions and rename LSRemote to List.
Diffstat (limited to 'remote.go')
-rw-r--r--remote.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/remote.go b/remote.go
index c297e8e..1b8b502 100644
--- a/remote.go
+++ b/remote.go
@@ -728,9 +728,9 @@ func (r *Remote) buildFetchedTags(refs memory.ReferenceStorage) (updated bool, e
return
}
-// LSRemote performs ls-remote on the remote.
-func (r *Remote) LSRemote(auth transport.AuthMethod) ([]*plumbing.Reference, error) {
- s, err := newUploadPackSession(r.c.URLs[0], auth)
+// List the references on the remote repository.
+func (r *Remote) List(o *ListOptions) ([]*plumbing.Reference, error) {
+ s, err := newUploadPackSession(r.c.URLs[0], o.Auth)
if err != nil {
return nil, err
}