Last active
November 4, 2018 05:26
-
-
Save ldclakmal/13b07a8fff05fdfb72ee333e83d763d2 to your computer and use it in GitHub Desktop.
Git Release
This file contains hidden or 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
-- 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