I've been searching for a half hour for how to do pull a remote branch, and cannot figure it out.
My remote git repository has a branch called frontend
. When I run git pull origin frontend
I get the following output:
* branch frontend -> FETCH-HEAD
Already up-to-date.
When I run git branch
, I get the following:
*master
Why isn't frontend
in the list returned by git branch
?
When I run git branch -v -a
, one of the returned branches is remotes/origins/frontend
...