how to pull from a branch in git code example
Example 1: how to pull from a particular branch in git
git pull origin <branch>
Example 2: how a to pull a branch in git
$ git pull origin other-branch
Example 3: how to pull from a branch in git
git pull origin other-branch
Example 4: pull from a brrrnch in git
$ git fetch origin other-branch
Example 5: git pull
git checkout new_feature
git pull <remote repo>