I have two branches:
develop
myFeature
I have made a single commit incorrectly while on develop and should have been on myFeature.
The commit has not been pushed yet.
How can i move this commit from develop and onto myFeature?
I have two branches:
develop
myFeature
I have made a single commit incorrectly while on develop and should have been on myFeature.
The commit has not been pushed yet.
How can i move this commit from develop and onto myFeature?
git checkout myFeature
git cherry-pick develop
git checkout -B develop develop~