http://bugs.winehq.org/show_bug.cgi?id=28056
--- Comment #27 from Bruni earns.61@gmail.com 2011-09-25 09:06:20 CDT --- (In reply to comment #16)
I've also reverted the patch mentioned in bug #28284 with this command (not sure that is how it should be done):
git checkout c7d0c093e5bc29da6163d2ef66542562ae7bafc2
@Mateusz Stachowski
That's wrong. If you want to get Git in the state just before the commit c7d0c093e5bc29da6163d2ef66542562ae7bafc2, you have to issue the command
git checkout c7d0c093e5bc29da6163d2ef66542562ae7bafc2 && git reset --hard HEAD^
This does just what you need without reverting that commit. The first command sets your Git tree on that commit, which becomes detached HEAD, while the second one rolls Git tree to the commit preceding HEAD.