I\'ve pulled all remote branches via git fetch --all
. I can see the branch I\'d like to merge via git branch -a
as remotes/origin/branchname. Probl
Maybe you want to track the remote branch with a local branch:
git branch new-local-branch
git branch --set-upstream-to=origin/remote-branch new-local-branch
git checkout new-local-branch
git pull