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

Re: old repository backed up

From: Kevin Grover <kevin_at_kevingrover.net>
Date: Mon, 27 Jul 2009 11:52:15 -0700

On Mon, Jul 27, 2009 at 11:32 AM, Todd Coulson <
t.coulson_at_pegasusinteractive.com> wrote:

> My new company gave me some disks of an old project. The folder
> structure is as follows:
>
>
>
> conf folder
>
> dav folder
>
> Db folder
>
> hooks folder
>
> locks folder
>
> format file
>
> README text document
>
>
>
> The readme says it is a svn repository. I was wondering how to use an svn
> admin tool to expose these files as they originally were?
>
>
>
> Todd Coulson
>

Those dirs/files are (as you said) from a Subversion repository. They are
not in human usable form.

You need an svn client to view them.

Assume you have the files here ~/repo (and your username is USER, so that's
/home/USER/repo), you could do this

cd
svn co file:///home/USER/repo current

That will check out the head revision of every file in the repository.

You could also use "svn list URL" (where URL is the above URL, or some
subpath, like file:///home/USER/repo/trunk)

On Windows, put the files in c:\repo and use file:///c:/repo as the URL. If
you are on windows, install TortoiseSVN, and use the "Browse Repostory"
option (pointed to that URL) to see the state of all files. NOTE: If you
install TortoiseSVN in Windows you do NOT need to install a command line
client (unless you want to use svnadmin to do admin things to the repo).

Note also, you can use "svn log -v URL" to see a log of the changes to the
files.

For more detailed info, read the Subversion Book.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2376105

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-07-27 20:53:51 CEST

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

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