On Fri, Feb 5, 2010 at 1:12 AM, Mihamina Rakotomandimby <mihamina@xxxxxxxxxx> wrote: > When we decided to giveup, we decided to get back to the configuration > before Bob broke it. But it would be interesting to see Andy's history. > > Reverting or resetting? Try this: git checkout HEAD~5 . git commit -m "reverted back to the version before this mess" Replace HEAD~5 with the revision you want it to look like. But don't forget the "." in the checkout line! All the magic is in there. When you specify a path ("."), git won't change the revision HEAD points to, but it will change all the files and the index to the ones from the specified version. Then you can commit these files, producing effectively a single commit that undoes a bunch of previous ones. Have fun, Avery -- 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