Reputation: 11483
I know if some files are checked out (modified) then I could right click on containing folder, then select "create patch". After then I will see list of all checked out files. So I could include them in the patch. But when no file is checked out, aka everything is committed, create patch window is empty. So the question is how can I create patch from checked-in files? I want to send this patch to colleagues so they can apply them on company svn server.
thanks,
Upvotes: 7
Views: 8253
Reputation: 8535
A unified diff is a patch file.
To save the changed files with the folder structure.
This should export the modified files with the folder structure.
Upvotes: 11
Reputation: 56390
What you're describing is a diff
between two subversion revisions. Check out the SVN Book's section on svn diff
to see how to do it.
Upvotes: 3
Reputation: 1785
If you just want colleagues to get the most up-to-date files, they should get it from the svn server using svn-checkout. If for some reason they can't access your svn server, you can also right-click and choose svn-export; this gives you a set of all the files in the containing folder without any of the hidden .svn directories.
Upvotes: 1