I tried to rebase (and then decided to merge) a branch with master
git co origin/pr/18489
git rebase master
git rebase --abort
git merge master
git commit
git add sympy/sets/handlers/union.py sympy/sets/tests/test_sets.py sympy/solvers/solveset.py sympy/solvers/tests/test_solveset.py
git commit
The prompt did not return to indicating the branch and showed that it was (detached HEAD|REBASE) so I did
git rebase --continue
git checkout -b iseta
git rebase --abort
git rebase --continue
git diff master > dif_keep
git checkout master
but it is still showing (detached HEAD|REBASE) even though I can look at a commit history and see that I am on the master branch. I even did "git pull" and the master branch updated.
Does anyone know what I can do to get out of this state?
Thanks,
/c