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?
|
|
Becuase 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 |
|||
|
|
|
|
Yes, they'll be in reflogs. You can name the branch at any time like this:
|
||
|
|
|
|
This isn't an answer, but more a follow up question: What do I do then when I want to spool back my branch to a tag that was made on the branch and at the same time stay on-branch? git checkout automatically put me on (no branch) What happens if I do modifications at the tag on-branch and check in again? I would sometimes like to modify Makefiles in past history and have these changes being valid for all changes done after the tag was placed. |
||
|
|
