Answers for "github how to tag a commit"

3

git tag a previous commit

git tag -a v1.2 9fceb02 -m "Message here"
Posted by: Guest on June-11-2020
0

git commit and tag

git add .
git commit -m "some description"
git tag v0.1.9 # or any other text
git push origin master # push the commit
git push --tags origin # push the tags
Posted by: Guest on February-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language