From 863c15bbc1e73a4508fbc046c927191a25034b78 Mon Sep 17 00:00:00 2001 From: Byoungchan Lee Date: Wed, 3 Feb 2021 23:33:11 +0900 Subject: [PATCH] Updated remote.go to add a comment for the public API --- remote.go | 1 + 1 file changed, 1 insertion(+) diff --git a/remote.go b/remote.go index 40e6da7..a2fbaff 100644 --- a/remote.go +++ b/remote.go @@ -556,6 +556,7 @@ func (c *RemoteCollection) Create(name string, url string) (*Remote, error) { return remote, nil } +//CreateWithOptions Creates a repository object with extended options. func (c *RemoteCollection) CreateWithOptions(url string, option *RemoteCreateOptions) (*Remote, error) { remote := &Remote{repo: c.repo}