Pulling data from remote repositories into Git
It is a bit inconvenient that the data from the remote repository is not merged immediately with the required branch and for this you need to do some more body movements. Fortunately, in Git you can get changes from an remote repository, immediately merging. This is done using the pull
command, after which the name of the remote repository and the branch name are specified:
git pull origin master
Pull changes into your local repository while merging them.