Search all branches for existing tags
This commit is contained in:
parent
3db3dd6b87
commit
96c9d52afd
2
tagger
2
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
|
||||
|
|
Loading…
Reference in New Issue