Git, Tags and GitHub Dec 6th, 2012 Add a tag: 1 git tag -a v0.1 -m "Version 0.1 Stable" Push tags to GitHub: 1 git push origin --tags Delete tag locally: 1 git tag -d v0.1 Push to GitHub: 1 git push origin --tags Rinse. Repeat.