Thanks for your response. I'm doing something like that now and felt that svn must have an easier way. I'll look into rsync and I'll take the rest of this over to the svn mailing list.
I appreciate the tip. Curt -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muness Alrubaie Sent: Tuesday, January 24, 2006 11:43 AM To: [email protected] Subject: Re: [Trac] question about Subversion (Offtopic) Curt, There is no built in way to do this in Subversion (that I could find). At a previous position, I'd built scripts that did that sort of thing. Here's a basic outline: * Update the contents of a working copy * Make use of the svn log command to get a list of deleted/modified/added files since the last time the script was run (using revision numbers). e.g.: svn log -r 90:HEAD -v * get a the current revision number and store it in a file (from svn info) * copy modified/added files to another directory. * generate a script that deletes deleted files. Not hard to do, but cumbersome. An easier thing might be for you to use rsync to update the website. You may find an alternate, simpler solution at the svn mailing lists (http://subversion.tigris.org/servlets/ProjectMailingListList) . Muness From: "ECKHART.CURT" <[EMAIL PROTECTED]> > > Sorry if I'm a little off topic. This is really a subversion question. > > Is there a way to export just the files corresponding to a changeset? I > have a test web site that's not an SVN working copy, and I would like to > update it by extracting the files that changed since the last time I > updated. > > I would appreciate a response to the question and also a pointer to the > Subversion mailing list since I am sure that many of you are plugged > into that also. > > TIA and sorry for the intrusion. > > Curt > > _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
