Whenever I did a git clone <Repository SSH URL>, followed by git branch, it will always shows me master branch.
Until very recently, I am performing the above same steps for another repository, however I keep getting the develop branch instead of the master branch.
While I manage to find a solution - git clone <Repository SSH URL> -b master, I am wondering what causes git clone command to get develop branch in the first place?
FYI, both the develop and master branch in the repository are definitely up to date and I am unable to gather much results between this repository and the other repositories (those that give me master branch)...
Any insights?