Answers for "move commits to another branch"

0

move commits to another branch

# Note: Any changes not committed will be lost.
git branch newbranch      # Create a new branch, saving the desired commits
git reset --hard HEAD~3   # Move master back by 3 commits (Make sure you know how many commits you need to go back)
git checkout newbranch    # Go to the new branch that still has the desired commits
Posted by: Guest on June-01-2021
-1

git move latest commit to new branch

git checkout existingbranch
git branch newBranch
git reset --hard HEAD~2 # go back 2 commits on existingBranch
Posted by: Guest on January-26-2021

Code answers related to "move commits to another branch"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language