Within my project I am doing some tasks in a branch (rama_A), which was branched from the main branch of the project (master). Now I need to create a new branch, which is born from the branch_A (let's branch_A_ramification)
How can I create a new branch from another already created with commands?
When I work from master, I create with:
git checkout -b "rama_A"
Would it be correct to place myself in rama_A (in this case I'm already with -b) and start from there doing the same step?
It would stay:
git checkout rama_A
git checkout -b "rama_A_ramificación"
And one last thing, to then merge those two branches (branch_A and branch_A_ramification), that is, save the changes from the branch of A to the branch_A itself, how should I do it? Am I right?