Re: How to checkout only the changes

2017-04-03 Thread horst . schlonz
On 03/31/2017 12:22 PM, Andrew Reedick wrote: -Original Message- From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] Sent: Thursday, March 30, 2017 3:41 PM To: Andrew Reedick Cc: horst.schl...@gmx.de; users@subversion.apache.org Subject: Re: How to checkout only the changes '

RE: How to checkout only the changes

2017-03-31 Thread Andrew Reedick
> -Original Message- > From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] > Sent: Thursday, March 30, 2017 3:41 PM > To: Andrew Reedick > Cc: horst.schl...@gmx.de; users@subversion.apache.org > Subject: Re: How to checkout only the changes > > 'vsvn diff

Re: How to checkout only the changes

2017-03-30 Thread Daniel Shahaf
Andrew Reedick wrote on Thu, Mar 30, 2017 at 13:09:26 +: > svn log --diff -r $REV "$SVNREPO" | grep '^+++' | perl -pe 's/^\+\+\+ //; > s/\t.*$//' | while read i 'svn diff --summarize' or 'svn log -qv' would be better. (They're O(1) as opposed to O(revision size).)

RE: How to checkout only the changes

2017-03-30 Thread Andrew Reedick
echo svn export --force "$SVNREPO/$i@$REV" "$D/" done -Original Message- From: horst.schl...@gmx.de [mailto:horst.schl...@gmx.de] Sent: Wednesday, March 29, 2017 9:28 PM To: users@subversion.apache.org Subject: Re: How to checkout only the changes On 03/27/

Re: How to checkout only the changes

2017-03-29 Thread horst . schlonz
On 03/27/2017 10:08 AM, Andrew Reedick wrote: From: horst.schl...@gmx.de [mailto:horst.schl...@gmx.de] Sent: Friday, March 24, 2017 4:04 PM To: users@subversion.apache.org Subject: How to checkout only the changes Is there a way to export only the changes, that occured in a specific revision

RE: How to checkout only the changes

2017-03-27 Thread Andrew Reedick
> From: horst.schl...@gmx.de [mailto:horst.schl...@gmx.de] > Sent: Friday, March 24, 2017 4:04 PM > To: users@subversion.apache.org > Subject: How to checkout only the changes > > > Is there a way to export only the changes, that occured in a specific > revision? Like exp

Re: How to checkout only the changes

2017-03-25 Thread Mark Phippard
On Sat, Mar 25, 2017 at 10:59 AM, wrote: > On 3/24/2017 7:56 PM, Ryan Schmidt wrote: > >> >> On Mar 24, 2017, at 15:04, horst.schl...@gmx.de wrote: >> >> Is there a way to export only the changes, that occured in a specific >>> revision? Like export or checkout only the added or modified files in

Re: How to checkout only the changes

2017-03-25 Thread horst . schlonz
On 3/24/2017 7:56 PM, Ryan Schmidt wrote: On Mar 24, 2017, at 15:04, horst.schl...@gmx.de wrote: Is there a way to export only the changes, that occured in a specific revision? Like export or checkout only the added or modified files in their respective paths? Deletions and cheap copies cann

Re: How to checkout only the changes

2017-03-24 Thread Ryan Schmidt
On Mar 24, 2017, at 15:04, horst.schl...@gmx.de wrote: > Is there a way to export only the changes, that occured in a specific > revision? Like export or checkout only the added or modified files in their > respective paths? Deletions and cheap copies cannot be treated that way, > obviously. P

How to checkout only the changes

2017-03-24 Thread horst.schl...@gmx.de
Is there a way to export only the changes, that occured in a specific revision? Like export or checkout only the added or modified files in their respective paths