how to pull from development branch code example
Example 1: pull from dev branch to master
(on branch development)$ git merge master
(resolve any merge conflicts if there are any)
git checkout master
git merge development (there won't be any conflicts now)
Example 2: how to pull from a branch in git
git pull origin other-branch