Github trials and tribulations: Accessing non-'main' branches of a pulled repo locally
I initialized a local github repository and then performed a 'git pull' of an existing online repository, so that its files were brought into my local repository folder.
The online repository that I pulled from has multiple branches. However, when I run
git branch -a
git branch -a
from my local repository, I only see the
main
main
branch listed.
I need to ultimately move over into one of the pulled repository's other branches, the
Features
Features
branch, and commit and push my work to that branch, NOT
main
main
. Although like I said, I currently don't even see the