This sounds so simple, but I just can\'t figure it out. I made an experimental branch a while ago, and now I\'d like to pull in all the changes that happened on master since I m
What you are looking for is merging.
git merge master
With pull you fetch changes from a remote repository and merge them into the current branch.
pull