Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #git #commit #tag
ADD COMMENT
Topic
Name
1+1 =