Solved How to svn up -r {"some-date-in-time"}?

Greetings, all. I need to rewind a copy of /usr/src to a place in time (don't know the specific revision).
Question is; the svn(1) (subversion(1)) doc's claim the following is the way to do it:
Code:
svn update -r {"2015-11-24 00:18"}
Which gleefully returns:
Code:
svn: E205000: Syntax error in revision argument '2015-11-24 00:18'
Well, that's not going to get it. So what's the magic incantation?

Thanks!

--Chris
 
Heh. It's the little things that get, ya. Misquoting. The man(1) page quotes it thusly:
Code:
{'DATE'}

Thanks for the correction, tobik!

greatly appreciated. :)

--Chris
 
Back
Top