You can clone one branch (without unintentionally cloning the entire project) with the following:
git clone <url> --branch <branch> --single-branch [<folder>]
Alternatively (trying to solve your new question here ...), you can clone the whole project
git clone <url>
Change the directories in the folder and create a new wizard branch using
git checkout -b validations
source share