git branch is not showing all the branches
It might be a possibility that you don't have those branches locally.
to pull all additional branches,
git fetch
it should be like this not like above
git fetch --all or git fetch <branch Name>
then you can use either checkout
or branch
to check if it shows
git checkout name-of-the-branch
git branch
Execute git branch -av
to show all remote and local branches.