Reputation: 1
I've made changes on my local branch, and done "git push origin my_branch_name". When I checkout to master branch, and do git pull, does it pull changes from all remote branches to my master branch?
Upvotes: 0
Views: 316
Reputation: 146
When you do git pull it only pulls the changes for the branch you are currently on.
Upvotes: 1