Git/Tags

Tags can be added to a specific commit in a git repo.

Add tag

Push tag to origin/upstream repo

Delete all tags matching grep

git tag -l | grep ".*-alpha.*" | tee >(xargs -r git tag -d) | xargs -r git push origin --delete

Delete a tag

Git/Tags (last edited 2025-12-24 01:36:15 by PieterSmit)