[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Determining revision usisng a date

From: Greg Stein <gstein_at_lyra.org>
Date: 2002-10-12 05:31:04 CEST

On Fri, Oct 11, 2002 at 07:39:14PM -0700, Daniel Rall wrote:
> I'm trying to merge some old code into a new WC. I tried passing the
> -D sub-argument to the diff command, but was greated with the
> following error message (I'm using a fairly old client):
>
> ra_dav does not currently support date-based operations.
>
> How do I determine which trunk revision corresponds to some code I
> made modifications to on July 31, 2002?

Oh... my previous email was based on having a working copy. If you don't
have one, then you'll just need to do a binary search.

$ cd some-working-copy
$ svn log -r 2600
oop. too early
$ svn log -r 3000
oop. too late

Or without a working copy:

$ svn log -r 2700 http://svn.collab.net/repos/svn/
oop. too early
...

You want something near rev 2820. Note that you can use -r2810:2830 and look
at the logs.

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 12 05:29:30 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.