I have a script which builds my application, uploads it to a remote machine, runs a performance test there and captures some metrics that I care about. The script creates a patch file for the local modifications I make in my workspace and shows it along with the performance numbers. This helps me compare the effect of various tuning options. If I want to recreate my workspace at a later date, I can use the SVN revision number and the patch.

svn diff does not report a new files I add to the workspace unless I explicitly use svn add on them first. Is there some way to create a patch file which will include the new files also?

PS: A similar question was asked here but was not answered adequately, IMO.

link|improve this question

59% accept rate
2  
How is that a problem? Preparing a patch with SVN is like preparing a commit. You run svn status and svn diff to see if all the pieces you need are there and revert, add, rm and edit the files until you're satisfied with your changes. – Alexandre Jasmin Nov 22 '10 at 19:20
@Alexandre, I want a scriptable way to capture my local changes in such a way that I can recreate the state of the workspace later with the info "this delta, applied to revision number XYZ" or something similar. – Binil Thomas Nov 23 '10 at 6:28
feedback

1 Answer

up vote 9 down vote accepted

To make svn diff include all the unversioned files from your local working copy you have to add these files first. svn diff outputs the same changeset that svn commit would use.

If you know for sure that all unversioned files should be added here's what you could do.

Prepare a list of unversioned files by taking from the output of svn status all the lines that start with a question mark:

svn status | grep ^? | sed -r 's/^\? +//' > ../unversioned_files_list.txt

You can then pass that list of files to svn addusing xargs:

xargs -r -d '\n' svn add < ../unversioned_files_list.txt

And then produce the patch:

svn diff > ../my_patch.patch

If you don't want to keep those files added, use the list of files to unadd them:

xargs -r -d '\n' svn rm --keep-local < ../unversioned_files_list.txt
link|improve this answer
Thanks Alexandre, that looks like it might just work. I will try it and get back. – Binil Thomas Nov 23 '10 at 20:27
Alexandre you are bad ass! – Denis Feb 14 at 10:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.