From 96c9d52afdd6400c106fb896e5474a7c72c4fae1 Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Fri, 8 Mar 2024 15:00:09 +0100 Subject: [PATCH] Search all branches for existing tags --- tagger | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tagger b/tagger index d44dbc8..917fa8f 100755 --- a/tagger +++ b/tagger @@ -12,7 +12,7 @@ ap.add_argument("--noop", action="store_true") args = ap.parse_args() subprocess.run(["git", "pull"]) -result = subprocess.run(["git", "log", "--pretty=format:%H %D", "--date-order"], stdout=subprocess.PIPE, universal_newlines=True) +result = subprocess.run(["git", "log", "--pretty=format:%H %D", "--all", "--date-order"], stdout=subprocess.PIPE, universal_newlines=True) found_tags = set() need_tag = False max_major = 0