Am 3/22/2010 17:43, schrieb Jacopo Pecci: > Then I have tried “checkout master branch”, suddenly all the commits > in between the one labelled [master] and the latest one vanished. I > have not been able to get back. > > I am terribly afraid I have lost 4 day work. Do you have any > suggestion? How is it possible that something which I have committed > is not retrievable anymore. 1. Don't panic. 2. Make a backup copy, *including* the .git directory (very important!) The .git directory contains your 4 day work, and it is very likely still retrievable. It may be a simple matter of git branch the-lost-state HEAD@{1} If you can't work on a command line, then git extensions certainly has some nice UI that lets you create a branch at a particular revision. In this case, the branch name is "the-lost-state", and the revision is HEAD@{1}. You can try more branch names at HEAD@{2}, HEAD@{3} (you get the point). It means, roughly, "the state where HEAD was 1, 2, 3, etc. git operations ago". -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html