Hi Currently I am using git for managing my source code.
I have currently a master branch and develop branch. i usually creates a feature branch from from develop, works on it and then merge back to develop .
How can i get the latest changes on develop branch to other local branches.
in other words if i have two feature branch B1 and B2 both checked from develop . i did some commits on B1 and then merged B1 to develop . How can i get changes from develop branch to my feature branch B2 ?
thank you .