5

Accidentally I merge branch on my master branch but I had to revert the changes. I want to create a new branch and pick all the changes I had to revert.

Any of you knows how can I create the branch with all my previews commits?

I'll really appreciate your help

user2924482
  • 8,380
  • 23
  • 89
  • 173

1 Answers1

9

To create and checks out a new branch:

git checkout -b [name]

To cherry pick a commit onto this new branch:

git cherry-pick [commit hash]

Pietro Nadalini
  • 1,722
  • 3
  • 13
  • 32
tehp
  • 5,018
  • 1
  • 24
  • 31