github - GIT: Creating new branch with reverted changes -
accidentally merge branch on master branch had revert changes. want create new branch , pick changes had revert.
any of knows how can create branch previews commits?
i'll appreciate help
to create , checks out new branch:
git checkout -b [name]
to cherry pick commit onto new branch:
git cherry-pick [commit hash]
Comments
Post a Comment