aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-13 21:51:27 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-13 21:51:27 +0200
commit35d64e4f9e3e0a0ffd041e430a64650bb8ea71fa (patch)
tree802ed0c56ab5b09fb29800a147e3fcf3d8557e55 /commands
parent1779a0f3b92d58654b43444addeaf437a64d77a8 (diff)
downloadgit-bug-35d64e4f9e3e0a0ffd041e430a64650bb8ea71fa.tar.gz
fix push/pull
Diffstat (limited to 'commands')
-rw-r--r--commands/pull.go2
1 files changed, 1 insertions, 1 deletions
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