-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |