From: Frantisek Hrbata Date: Tue, 8 Dec 2020 13:19:51 +0000 (+0100) Subject: git-mr-fetch: fetch mr ref with tags X-Git-Tag: v0.2~59 X-Git-Url: http://www.hrbata.com/gitweb/?a=commitdiff_plain;h=5d96e90dbd6dcb4fb6c7f4d6c314ac79a5261fb1;p=gimrr.git git-mr-fetch: fetch mr ref with tags Signed-off-by: Frantisek Hrbata --- 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)