git pull command

The git pull command is basically a combination of the git fetch and git merge commands, where Git will fetch from the remote you specify and then immediately try to merge it into the branch you’re on.
Pulling from a specific remote branch dev.
<code>
git pull origin dev
</code>