How can only the files that were modified in a range of SVN revisions be checked out? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:37:43Z http://stackoverflow.com/feeds/question/320693 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked 0 How can only the files that were modified in a range of SVN revisions be checked out? xenox 2008-11-26T13:30:35Z 2009-03-02T14:30:35Z <p>Is it possible to checkout only those files from a SVN repository that were modified in a revision or range of revisions, without checking out any files that were not modified? </p> http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked/320706#320706 0 Answer by Drejc for How can only the files that were modified in a range of SVN revisions be checked out? Drejc 2008-11-26T13:35:20Z 2008-11-26T15:00:21Z <p>I'm not completly sure if this is possible but you can also do something like this:</p> <pre><code>svn checkout --revision &lt;revisionNumber&gt; </code></pre> <p>to get a certain revision and</p> <pre><code>svn log --revision &lt;revisionNumber&gt; </code></pre> <p>to list all files chaned in a revision</p> http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked/320775#320775 1 Answer by Ciaran McNulty for How can only the files that were modified in a range of SVN revisions be checked out? Ciaran McNulty 2008-11-26T14:02:05Z 2008-11-26T14:02:05Z <p>If you use svn log with the -v (verbose option):</p> <pre><code>svn log -r &lt;revision&gt; -v &lt;path&gt; </code></pre> <p>You will get an output that includes the changed files:</p> <pre><code> r3 | ciaran | 2008-11-16 12:24:30 +0000 (Sun, 16 Nov 2008) | 1 line Changed paths: A /trunk/apache/apache.conf A /trunk/application/controllers Commit message goes here </code></pre> <p>You should be able to manipulate that with some grepping etc. to produce a sequence of svn co commands.</p> http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked/320790#320790 2 Answer by flolo for How can only the files that were modified in a range of SVN revisions be checked out? flolo 2008-11-26T14:07:07Z 2008-11-26T14:25:30Z <p>There is afaik now direct way to get just the changed files and not all.</p> <p>My idea would be: use the verbose output of the list (which shows the last changed version), filter it through awk, and checkout the rest. E.g. to search the files which changed in version 42 I would use this</p> <pre><code>VERSION=42 svn list -v -R -r $VERSION svn://... | awk "/^[ ]*$VERSION/ {print \$7}" &gt; files_to_checkout </code></pre> <p>And later do a <code>svn update -r $VERSION 'cat files_to_checkout'</code>(or a co on the url, depending on where you will run the command). </p> <p>EDIT: Additional even shorter: use the svn diff command, and replace with -x and --diff-cmd the diff command with svn co. This requires some argument shifting hacking (which I wont elaborate here), but needs just one line and no intermedate file (which you could save above too, but that would have cost readability)</p> http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked/320823#320823 1 Answer by Shyam for How can only the files that were modified in a range of SVN revisions be checked out? Shyam 2008-11-26T14:17:09Z 2008-11-26T14:17:09Z <p>My suggestion is in the same lines as flolo suggests. But, takes a range. You could the following shell function.</p> <pre><code>function checkout_files_in_revrange() { svn_url=$1; start_rev=$2; end_rev=$3; for theCheckoutCanditate in `svn log -r $start_rev:$end_rev --verbose --incremental | grep " M " | cut -f5 -d' ' | cut -f3- -d/` do svn co $svn_url/$theCheckoutCandidate -q; done } </code></pre> http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked/320909#320909 1 Answer by hughlacey for How can only the files that were modified in a range of SVN revisions be checked out? hughlacey 2008-11-26T14:38:38Z 2008-11-26T14:38:38Z <p>We do this in an MSBuild script:</p> <p>Step 1: - Use the diff command to get the list of modified files, redirect output into a temporary file in the target directory Step 2: - Read the temporary file into an itemGroup</p> <pre><code>&lt;Exec command="$(svnExecutable) diff -r $(StartRevision):$(EndRevision) $(DOUBLE_QUOTES)$(SvnRepositoryPath)/$(DOUBLE_QUOTES) --no-diff-deleted --summarize &amp;gt; $(TempFilePath)" WorkingDirectory="$(WorkDirectory)" /&gt; </code></pre> <p> </p> http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked/321050#321050 0 Answer by Bert Huijben for How can only the files that were modified in a range of SVN revisions be checked out? Bert Huijben 2008-11-26T15:14:23Z 2009-03-02T14:30:35Z <p>Another take at answering your question:</p> <p>Assuming you have an existing workingcopy you should just use 'svn update' on the root of the directory containing the files you are looking at as that retrieves exactly what changed between your current revision and the HEAD revision with the least data possible.</p> <p>Older sourcecode management systems like CVS and VSS asked the server for every file <em>has this file changed?</em>, while subversion just sends the changes of a tree as a single action. When you pass a list of files to svn update you don't have this advantage.</p> <p>Therefore the most efficient way to transfer what has changed is just updating. This only transfers a binary diff of the changes in HEAD compared to the base version of your working copy.</p> <p><hr /></p> <p>If the problem you are trying to solve is that <i>svn update</i> is to slow, then we are trying to solve that for Subversion 1.7.</p> <p>This version will introduce a new working copy data storage format that will make simple operations that have to lock an entire working copy (like updating) much faster.</p> http://stackoverflow.com/questions/320693/how-can-only-the-files-that-were-modified-in-a-range-of-svn-revisions-be-checked/460558#460558 0 Answer by Shyam for How can only the files that were modified in a range of SVN revisions be checked out? Shyam 2009-01-20T09:18:52Z 2009-01-20T09:18:52Z <p>In almost the same lines as most of the folks have suggested, (however only in a system with grep and awk), you can get the list by executing</p> <p><code>svn log -v --revision &lt;revision_number&gt; | grep "^ " | awk '{print $2}'</code>.</p>