I usually create new branch from develop
git checkout -b new-feature develop
then after the last commit I merge back to develop
git checkout develop
git merge new-feature
but this time I created new-feature2 brach from new-feature and now I cannot merge to develop.
Is there a way to switch new-feature2's parent to develop?
(The files I worked on were the same version as in develop so this should not require merging.)