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 and check them in though. Where do those changes go? If I switch back to 'master' they disappear (overwritten by what was in master) and I can't seem to find them again. What gives? If Git lets me commit changes against what's essentially an anonymous branch, surely I can get them back?
|
feedback
|
|
Because your commit isn't on any branch, you can't see it in the working directory unless you checkout that specific commit, using its SHA1. You can find the commit by looking at the
That tells you the SHA1 that you would have to
This all seemed a little weird to me at first, until I realized that git | ||||
feedback
|
|
Yes, they'll be in reflogs. You can name the branch at any time like this:
| |||
|
feedback
|
|
To answer the second question you'd use git reset --hard yourtagname As for what would happen you essentially forked your branch at the tagname and stayed on the same branch. Your commits in the old fork are still there... they're just hard to see. You might have to use the reflog to find the old fork. | |||
|
feedback
|
|
Alternatively, you can merge the commit back into master without a new branch by finding its SHA1 (using git reflog as above) and then:
| |||
|
feedback
|