Last active
October 25, 2020 23:47
-
-
Save webern/8542ef52591011b9f5ae0f888c0e308e to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# create an annotated tag, the -a indicates that the tag will have a message | |
git tag –a v1.0.0 –m "This is the 1.0 release." | |
# same as above, but opens your text editor for the message | |
git tag –a v1.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment