how to download with git tag in github code example
Example 1: git tag checkout
$ git checkout tags/v1.0 -b v1.0-branch
Switched to a new branch 'v1.0-branch'
Example 2: git find out commit for tag
$ git rev-list -n 1 $TAG
$ git checkout tags/v1.0 -b v1.0-branch
Switched to a new branch 'v1.0-branch'
$ git rev-list -n 1 $TAG