From 35d64e4f9e3e0a0ffd041e430a64650bb8ea71fa Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Fri, 13 Jul 2018 21:51:27 +0200 Subject: fix push/pull --- commands/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands') diff --git a/commands/pull.go b/commands/pull.go index b3541c0f..105fce9c 100644 --- a/commands/pull.go +++ b/commands/pull.go @@ -17,7 +17,7 @@ func pull(repo repository.Repo, args []string) error { remote = args[0] } - if err := repo.PullRefs(remote, bug.BugsRefPattern+"*"); err != nil { + if err := repo.PullRefs(remote, bug.BugsRefPattern+"*", bug.BugsRemoteRefPattern+"*"); err != nil { return err } return nil -- cgit