Skip to content

Latest commit

 

History

History
executable file
·
14 lines (10 loc) · 267 Bytes

release.md

File metadata and controls

executable file
·
14 lines (10 loc) · 267 Bytes

Viewing existing releases

git tag

Making a new tag for a release

git tag -a v0.3 -m "release v0.3"

Pushing the new tag to remote

git push origin v0.3

Delete tag locally

git tag -d v0.3

Delete tag from remote

git push --delete origin v0.3