Yet more git syntax I keep forgetting. To branch and create a new line of development from a specific commit, do the following:
git branch newbranchname a9c146a09505837ec03b
Add the -b
switch to immediately checkout after branching.
Since the commit will likley be behind, use --force
when pushing to tell git to ignore future commits from the original branch and start a new fork.