In a nutshell:
git clone url
will give you the whole repository. If then you need to checkout a specific tagged release, you can do
git checkout tags/<tag_name>
Even better, you can checkout and create a branch
git checkout tags/<tag_name> -b <branch name>
If you only need to clone locally a specific release, try:
git clone --branch <tag_name> <repo_url>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…