git fetch tags code example
Example 1: git fetch tags force
git fetch --tags --force
Example 2: git checkout tag
$ git checkout tags/<tag_name> -b <branch_name>
Example 3: git tag checkout
$ git checkout tags/v1.0 -b v1.0-branch
Switched to a new branch 'v1.0-branch'