Skip to content

Instantly share code, notes, and snippets.

@ldclakmal
Last active November 4, 2018 05:26
Show Gist options
  • Save ldclakmal/13b07a8fff05fdfb72ee333e83d763d2 to your computer and use it in GitHub Desktop.
Save ldclakmal/13b07a8fff05fdfb72ee333e83d763d2 to your computer and use it in GitHub Desktop.
Git Release
-- Git releases --
Ex: tag = v1.0-alpha1
Add tag
----------------------------------------------
git tag -a [tag] -m "Released [tag]"
git push origin [tag]
Delete tag
----------------------------------------------
git tag -d [tag]
git push origin :refs/tags/[tag]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment