git pull from branch into branch code example
Example 1: how a to pull a branch in git
$ git pull origin other-branch
Example 2: how to pull remote branch into local branch
git fetch origin <branch-name>
$ git pull origin other-branch
git fetch origin <branch-name>