Remember that before merging you need to update the tag, it is very different from the branches ( git pull origin tag_name will not update your local tags), so you need the following command:
git fetch --tags origin
Then you can execute git merge tag_name to merge the tag onto the branch.
Dead-Man Aug 13 '14 at 18:32 2014-08-13 18:32
source share