I have develop git branch for my work, I created a new branch called feature1 and made commit 1,2,3, and 4.
I need to move commit 3,4 from feature1 branch to a new created branch feature2.
The commits 3,4 should be deleted from feature1 and added to a new branch feature2, so the end result should be something like feature1 with 1, and 2 branches and feature2 with 3 and 4.
Please note that at the moment I have develop and feature1 branches. feature2 not added yet.
What is the best way to achieve that? I tried git cherry-pick but wanna make sure the best way to do that.
branch2? On which commit?