From 5d96e90dbd6dcb4fb6c7f4d6c314ac79a5261fb1 Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Tue, 8 Dec 2020 14:19:51 +0100 Subject: [PATCH] git-mr-fetch: fetch mr ref with tags Signed-off-by: Frantisek Hrbata --- git-mr-fetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-mr-fetch b/git-mr-fetch index c5b13ee..8a9add1 100755 --- a/git-mr-fetch +++ b/git-mr-fetch @@ -59,13 +59,13 @@ if args.head: types += ["head"] if args.tags: - types += ["tags"] + types += ["tags", "mr"] if args.mbox: types += ["mbox"] if not types: - types = ["head", "mbox", "tags"] + types = ["head", "mbox", "tags", "mr"] if args.force: newrefs = mrlib.filter_refs(newrefs, mrs=mrs, types=types) -- 1.7.10.4