I have started doing some work on a branch which I have in term realised was the wrong branch. Is there a way to move a branch to a different branch.
For example:
You could use git rebase --onto, e.g.,
git rebase --onto
git rebase --onto new-base old-base your-branch
So in your case, something like:
git rebase --onto B E L
should work.