Search all branches for existing tags

This commit is contained in:
Peter J. Holzer 2024-03-08 15:00:09 +01:00
parent 3db3dd6b87
commit 96c9d52afd
1 changed files with 1 additions and 1 deletions

2
tagger
View File

@ -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