Tirar de las ramas remotas
git fetch origin
git checkout --track origin/<remote_branch_name>
Witty Wolverine
git fetch origin
git checkout --track origin/<remote_branch_name>
git pull origin master
git checkout my_branch # move on your branch (make sure it exists)
git fetch origin # fetch all changes
git pull origin master # pull changes from the origin remote, master branch and merge them into my_branch
git push origin my_branch # push my_branch
git pull origin
Git pull origin name_of_remote_branch
#pull down changes of remote branch to local repo
git checkout new_feature
git pull <remote repo>