Home
How to Create a Branch from a Previous Commit
General Process
Checkout the specific commit you want to branch from.
git checkout <sha-1 of the specific commit>
Create new branch
git branch <Branch Name>
Checkout new branch.
git checkout <Branch Name>