Marija Bexing
Marija Bexing

Reputation: 1

Git pull origin master

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

Answers (1)

Kruspe
Kruspe

Reputation: 146

When you do git pull it only pulls the changes for the branch you are currently on.

Upvotes: 1

Related Questions