diff options
Diffstat (limited to 'cache')
-rw-r--r-- | cache/repo_cache.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go index d3d02c45..a187b43c 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -266,12 +266,6 @@ func (c *RepoCache) MergeAll(remote string) <-chan bug.MergeResult { return bug.MergeAll(c.repo, remote) } -// Pull does a Fetch and merge the updates into the local bug states -func (c *RepoCache) Pull(remote string, out io.Writer) error { - // Todo: update the cache properly - return bug.Pull(c.repo, out, remote) -} - // Push update a remote with the local changes func (c *RepoCache) Push(remote string) (string, error) { return bug.Push(c.repo, remote) |