If you want to see more comics like this, sign up for my saturday comics newsletter or browse more comics!
read the transcript!
-
Make sure you have main checked out:
git checkout main -
Create the new branch:
git branch my-new-branch -
Remove the unwanted commit from main:
git status
git reset --hard HEAD~
(careful!)
- Check out the new branch!
git checkout my-new-branch
Smiling stick figure with medium length straight hair: git branch and git checkout -b both create a new branch. The difference is git checkout -b also checks out the branch