Answers for "git tag commit"

2

git tag from commit

$ git tag <tag_name> HEAD   (for the last commit)
Posted by: Guest on October-28-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