If I check out a tagged version of my source code without creating a branch, Git indicates that I\'m not associated with any branch at all. It\'s happy to let me make changes an
Alternatively, you can merge the commit back into master without a new branch by finding its SHA1 (using git reflog as above) and then:
git checkout master git merge SHA1