Answers for "git commit and tag"

16

git create tag and push

git tag -a v1.4 -m "my version 1.4"
Posted by: Guest on December-11-2019
3

git commit and tag

git tag -a v1.0 7cceb02 -m "Your message here"
Posted by: Guest on February-07-2021
7

git add tag

git tag -a v1.2 
git push origin v1.2
Posted by: Guest on June-02-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