forked from etingof/pysnmp
-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
move-tag.py
49 lines (35 loc) · 1.28 KB
/
move-tag.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import subprocess
import sys
def run_command(command):
"""Run a shell command and return the output."""
result = subprocess.run(command, shell=True, capture_output=True, text=True)
if result.returncode != 0:
print(f"Error: {result.stderr}")
sys.exit(result.returncode)
return result.stdout.strip()
def delete_tag(tag):
"""Delete a Git tag locally and remotely."""
print(f"Deleting local tag '{tag}'...")
run_command(f"git tag -d {tag}")
print(f"Deleting remote tag '{tag}'...")
run_command(f"git push origin :refs/tags/{tag}")
def create_and_push_tag(tag, branch):
"""Create a Git tag at the head of a branch and push it to remote."""
print(f"Creating tag '{tag}' at the head of branch '{branch}'...")
run_command(f"git tag {tag} {branch}")
print(f"Pushing tag '{tag}' to remote...")
run_command(f"git push origin {tag}")
def main():
if len(sys.argv) != 2:
print("Usage: python move-tag.py <version>")
sys.exit(1)
version = sys.argv[1]
tag = f"v{version}"
branch = f"release-{version}"
delete_tag(tag)
create_and_push_tag(tag, branch)
print(
f"Tag '{tag}' has been moved to the head of branch '{branch}' and pushed to remote."
)
if __name__ == "__main__":
main()