Heya, On Tue, Feb 17, 2009 at 17:47, Johannes Schindelin <Johannes.Schindelin@xxxxxx> wrote: > I managed to collect 10 candidates already, and since I did all the hard > work of collating them, I took the liberty of ordering them into a very > subjective order of ugfwiininess (pronounced "You-gah-wee-knee-ness"). How about using git to do a temporary 'svn stash'? If you have changes in your svn working copy that you cannot commit just yet, but you want to check out an earlier revision for whatever reason, the current only solution in svn to that is to have a second working copy. But no longer! $ cd path/to/svn/repo $ git init && git add . && git commit -m "save svn state" $ svn revert -R * $ svn update -r 42 $ # do whatever you need to do here $ git reset --hard && rm .git Does that qualify? ;) -- Cheers, Sverre Rabbelier -- 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