Git Copy Branch dans une autre branche
git checkout -b new_branch old_branch
Victorious Vicuña
git checkout -b new_branch old_branch
# git checkout <branch> <path>
$ git checkout other_branch world.txt
#If you can use: git merge
git checkout old_branch.
git checkout master . #With period
git add --all
git commit -m "Copy from master to old_branch"
git push -u origin old_branch
git checkout -b new_branch old_branch
git checkout old_branch
git branch new_branch
git checkout BranchB
git merge BranchA