I am new to git version control and I dont know how to clone / pull a specific branch of a repo . Trying to get the branch master of the project, but it defaults to
master
you can use this command for particular branch clone :
git clone <url of repo> -b <branch name to be cloned> Eg: git clone https://www.github.com/Repo/FirstRepo -b master