I have a branch(created from master)(branch_a) with several commits and pushes. Now is there a way to include all these changes into a brand new branch(from Master)(branch_b) that I am about to create?
git checkout master
git checkout -b branch_a
Now in branch_a i do some work(x,y,z)
git add .
git commit -m
git push
And now,
git checkout master
git checkout -b branch_b
Now in branch_b
How can I include my work(x,y,z) into the branch_b and then commit and push it ?
Thanks