This is a newbie question. I have 2 branches, branch_A and branch_B. I am in branch A and do a merge with this command:
git checkout branch_A
git merge --commit -m "my commit" branch_B
If there is no conflict, it automatically does the merge and updates the branch_A to new commit. But branch_B is still in same place.
How can I update the branch_B to point in same place than branch_A?
git merge --commit -m "my commit" branch_B– CharlesB Apr 24 '12 at 14:31