I am trying to clone a repo from an SSH remote like this:
git clone "ssh://user@project.example.com/var/www/git/www"
This works OK but using this command I am actually cloning the "master" branch of the repo, but instead I want to clone another branch which is called "dev2".
How do I achieve that?