I worked on 'dev' branch of a remote repo.
The 'dev' branch was then merged with 'master' branch.
But along with the merge, the 'master' branch also had its own changes, aka commits.
Which means, master was commited few times before 'dev' being merged into it.
Now when I do 'git pull' staying in 'dev' branch, what is that going to do?
Will it pull all updated data of remote 'master' branch to my local 'master' branch as well ?
Or will I have to checkout to 'master' branch of my local repo and then do the git pull ?