Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

create a tag locally

#Create a tag locally
git tag <tagname>
#To add a description 
git tag <tagname> -a
#To push all tags to remote 
git push origin --tags
#To push a signle tag to remote
git push origin <tag>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #tag #locally
ADD COMMENT
Topic
Name
2+2 =