dave@dave-dev:/media/dev/belgravia$ git branch
* (no branch)
master
I’m not sure how this happened, but is there a way I can merge no-branch into the master. I’m not sure how I can merge two branches when one of them is not a branch. The commits in no-branch seem to be loose. I’m afraid that checkout master will cause data loss.
Use
git showto get the SHA1 commit ID of the current HEAD. With that information, you can’t lose those commits.Then, switch to master and:
where
abc123is the SHA1 from the first step.