I was asked to copy my team's remote branch, called v8.1, to my local. I am to do a bug fix against this branch.
In Github, I went to Code, switched to v8.1 and copied the SSH command, running it in Terminal: git clone git@github.company.com:folderName/repoName.git
Later, I realized I had not copied Remote Branch v8.1. I had copied Master. In Terminal, "git branch" reveals only 1 branch: master Is there a way to do a "git checkout -b" from Remote v8.1?
I guess my mental model of Remote Branching is off. Please clarify.
I tried git init w SSH. I'm expecting a copy of Remote Branch as my own feature branch on local.