Step by step demo of react
Each step is tagged by git. You'd look after the differences in each release. There are also inline comments to drive you.
First, make sure that the tag exists locally by doing
# --all will fetch all the remotes.
# --tags will fetch all tags as well
git fetch --all --tags --pruneThen check out the tag by running
git checkout tags/<tag_name> -b <branch_name>Instead of origin use the tags/ prefix.