How do I “move” my commits from “no branch” to an actual branch?
You are currently in a detached HEAD state. To resolve that, all you need to do is create a new branch with git branch <branchname> or git checkout -b <branchname>. That will leave you with a local branch you can play with, and even delete when you’re done with it. Branches in git are just … Read more