Change The Start Point Of A Branch
β― git checkout qa
β― git checkout -b new-branch
fatal: A branch named 'new-branch' already exists.β― git checkout -B new-branch
Switched to and reset branch 'new-branch'Last updated
β― git checkout qa
β― git checkout -b new-branch
fatal: A branch named 'new-branch' already exists.β― git checkout -B new-branch
Switched to and reset branch 'new-branch'Last updated