Skip to content

Commit

Permalink
add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
glalonde committed Apr 4, 2020
1 parent 0bef9d9 commit 02b49fb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 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`

0 comments on commit 02b49fb

Please sign in to comment.