Update Git config
Add this to the [upstream] section in .git/config
fetch = +refs/tags/*:refs/tags/*
Fetch Upstream
git fetch upstream
https://git-scm.com/book/en/v2/Git-Basics-Tagging
List tags
git tag
Create tag
git tag -a v1.4 -m "my version 1.4"
Tag past commits
git tag -a v1.2 9fceb02
Push a tag
git push origin v1.5
Checkout a tag
git checkout 2.0.0