Skip to content

Instantly share code, notes, and snippets.

View theodore86's full-sized avatar
💭
Coding

Theodore Georgomanolis theodore86

💭
Coding
View GitHub Profile
@theodore86
theodore86 / git_delete_tags.py
Created June 7, 2021 18:33
Python script to delete git tags older than X days
#!/usr/bin/env python
"""
Delete Git repository tags older than X days.
"""
import argparse
import sys
import os