I am using git and I have a local develop branch, from which I created new branch called BranchA
, where I will work on FeatA
. I worked on this feature, and I needed some additional input, so I needed to postpone work until I receive information I required. So I committed to BranchA
, and created new branch BranchB
from Develop
branch. This resulted in having two parallel branches created from Develop branch.
Now I received additional information for FeatA
, so I reverted to BranchA
, and finished FeatA. At this point I merged Develop branch with BranchA, pushed it to origin/Develop, and now I wish to continue developing on BranchB.
Do I need to "rebase" BranchB, so that its now based on "new" Develop branch, the one that contains FeatA also? If yes, how do I do it?