Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to Add new commit to the existing Git tag

# Create a new branch from tag v1.1
git checkout -b newbranch v1.1

# Do some work and commit it

# Create a new tag from your work
git tag -a -m "Tag version 1.1.1, a bugfix release" v1.1.1
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Add #commit #existing #Git #tag
ADD COMMENT
Topic
Name
3+7 =