For this you need to tell the git, where to pull the changes, for that you could use the following command:
git pull . master
In this case, the command should run from the current repository/directory.
But if you are working locally then to pull the changes just merge the branch
git merge master
This will pull changes to your local branch.