Re: Finding the revision of a deleted file.

2011-04-18 Thread Gavin "Beau" Baumanis
Firstly, let me thank everyone for their help. I was "hoping / wishing" that here was some simple command line instruction(s), that I simply didn't know about, that would do the job for me. It would appear, not in the way I had hoped. Mark Cooke suggested that I use a hook script to maintain the

Re: Finding the revision of a deleted file.

2011-04-18 Thread Henrik Sundberg
On Wed, Apr 13, 2011 at 3:27 AM, Gavin "Beau" Baumanis wrote: > Create a file with svn log > (svn log --verbose > svn.log) > Then grep / search the log for the file you're after. > > Is there not a more convenient way to do this? Have you seen ViewVC? /$

RE: Finding the revision of a deleted file.

2011-04-18 Thread Cooke, Mark
pport > > full text search of file content of all revisions in the > repository, too. > > -Original Message- > From: Gavin "Beau" Baumanis [mailto:gavin.bauma...@palcare.com.au] > Sent: 14 April 2011 01:28 > To: Stefan Sperling > Cc: Subversion Users >

Re: Finding the revision of a deleted file.

2011-04-13 Thread Gavin "Beau" Baumanis
Hi Stefan / Konstantin, Thanks for the responses. The data mining tool looks promising, and as you state, allows for some "extra" goodness too. Gavin. On 14/04/2011, at 2:20 AM, Stefan Sperling wrote: > On Wed, Apr 13, 2011 at 11:27:22AM +1000, Gavin "Beau" Baumanis wrote: >> I have been doin

Re: Finding the revision of a deleted file.

2011-04-13 Thread Stefan Sperling
On Wed, Apr 13, 2011 at 11:27:22AM +1000, Gavin "Beau" Baumanis wrote: > I have been doing some work everyone's good friend Mr.Google. > Every blog / article I read all said the same thing; > > Create a file with svn log > (svn log --verbose > svn.log) > Then grep / search the log for the file you

Re: Finding the revision of a deleted file.

2011-04-13 Thread Konstantin Kolinko
If you do not know the path to the file, then I think svn ls --depth=infinity together with peg revision set in the past will help you to locate it. Then you can use svn log on the file to see when it was deleted and svn cp it from any revision before that. Best regards, Konstantin Kolinko 201

Re: Finding the revision of a deleted file.

2011-04-13 Thread Gavin "Beau" Baumanis
It's always the way I should have been a little more clearer about my requirements. I have a file; fileName.txt This file exists "somewhere" in the repository at a previous revision because it was deleted at sometime in the past. So, I am unable to restrict the path that svn.log starts at.

Re: Finding the revision of a deleted file.

2011-04-13 Thread Daniel Shahaf
On Wed, 13 Apr 2011 10:52 +0400, "Konstantin Kolinko" wrote: > 2011/4/13 Gavin "Beau" Baumanis : > > Is there not a more convenient way to do this? > > Binary search with 'svn info'?

Re: Finding the revision of a deleted file.

2011-04-12 Thread Konstantin Kolinko
2011/4/13 Gavin "Beau" Baumanis : > I have been doing some work everyone's good friend Mr.Google. > Every blog / article I read all said the same thing; > > Create a file with svn log > (svn log --verbose > svn.log) > Then grep / search the log for the file you're after. > > It takes  about 8 minut

Finding the revision of a deleted file.

2011-04-12 Thread Gavin "Beau" Baumanis
I have been doing some work everyone's good friend Mr.Google. Every blog / article I read all said the same thing; Create a file with svn log (svn log --verbose > svn.log) Then grep / search the log for the file you're after. It takes about 8 minutes just for the log file to be created - which m