We have below branches on which we work.
master
dev
person A
person B
We both keep working on our branches i.e. person A or person B (working on same project). When person A finish the work, he commits changes to his branche and then create a pull request to merge the changes into dev, which other person B views and approve. After approval, the changes are then saved in dev.
How B can take the latest changes which A has done, from dev to his branch person B. We are using github desktop to do all the git push/pull but happy to learn commands too. Thanks.