Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 143 Bytes

git.md

File metadata and controls

8 lines (6 loc) · 143 Bytes

list existing tags

git tag -l

delete a local git tag

git tag -d v0.1.2

delete a remote git tag

git push --delete origin v0.1.2